0

カスタム Twitter アプリが突然ステータスの更新を停止し、Twitter を初めて使用しました。

<errors>
  <error code="34">Sorry, that page does not exist</error>
</errors>
Stack Trace:
   at TwitterOAuth.WebResponseGet(HttpWebRequest webRequest)

カスタム アプリは次のリソース URL を使用しています:

"https://twitter.com/statuses/update.xml"

次のリソース URL を使用するコード プロジェクトの例が見つかりました。

"http://api.twitter.com/1/statuses/update.json"

http://www.codeproject.com/Articles/247336/Twitter-OAuth-authentication-using-Net


だから私は試しました

"https://api.twitter.com/1/statuses/update.xml"

次のエラーが発生しました。

Unhandled Exception: System.Net.WebException: The remote server returned an erro
r: (403) Forbidden.
   at System.Net.HttpWebRequest.GetResponse()
4

1 に答える 1

5

現在、twitter は新しい API V1.1 を公開しており、古い API v1.0 は 2013 年 3 月 5 日に廃止されます。そのため、API V1.1 を確認する必要があります。

于 2012-10-24T21:48:55.087 に答える