HTTP 403 Error while accessing web service

前端 未结 2 891
闹比i
闹比i 2021-01-23 16:36

Im trying to access a web service from a remote computer. I managed to access the web service from the browser. But Im getting HTTP 403 when I try to call the web service from t

2条回答
  •  [愿得一人]
    2021-01-23 17:03

    A 403 response indicates that the host or software you're connecting with isn't allowed to access the web service. Reasons for this might be:

    • The remote host you are is being blocked by a firewall
    • You've reached the limit of calls to the web service and they are blocking any further connections
    • You are sending credentials for authentication but the account is banned/disabled
    • The user-agent or some other header in your request is causing the service to reject the connection. Perhaps a missing header?

提交回复
热议问题