我在我的网站上使用 Google API。它在我的本地主机上运行良好,但在实时服务器上我收到以下错误:
System.Net.WebException: The remote server returned an error: (403)
Forbidden.
at System.Net.HttpWebRequest.GetResponse()
at GoogleUrlShortnerApi.Shorten(String url)
我正在使用此处找到的代码: http ://www.thecyberwizard.com/index.php/5/google-analytics-api-in-c-part-1/
从调试中,我看到错误发生在
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
命令。
有谁知道可能导致错误的原因(同样,错误仅发生在服务器上。当我在计算机上本地运行此代码时,它运行良好并检索到一个短 url)。
我必须关闭计费仍然收到以下错误:
System.Net.WebException: The remote server returned an error: (403)
我该如何解决这个问题?