Rod
Rod

Reputation: 15475

has the twitter api resource url for update status changed

Custom twitter app all of sudden stopped updating status and I'm new to Twitter.

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

Custom app is using the following resource url:

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

Found a Code Project example that uses the following resource url and it worked for me:

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

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


So I tried

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

Got the following error:

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

Upvotes: 0

Views: 692

Answers (1)

Mina Atia
Mina Atia

Reputation: 790

now, twitter published new API V1.1 and the old API v1.0 will be retired on March 5th, 2013. so you should review API V1.1

Upvotes: 5

Related Questions