Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I send http-post to tweet to Twitter by https://api.twitter.com/1.1/statuses/update.json api But the response show an error:

array(1) { ["errors"]=> array(1) { [0]=> array(2)


{ ["message"]=> string(23) "Bad Authentication data" ["code"]=> int(215) } } } 

How to fix and can tweet to Twitter using the API? Thanks so much.

Note: I don't want to use 3rd library, just API Twitter Api to do that.

share|improve this question

2 Answers

One of the following is probably true:

  • Your application has not submitted a complete oAuth authorization request to Twitter, so it is not authorized to post on your account.
  • You have not submitted the appropriate fields to the update.json endpoint to indicate your authorization.
  • You do not have an oAuth implementation in place at all. Uh oh.

The oAuth protocol is required for applications which interact with the Twitter API, and is quite complex to implement. Unless you are a big sucker for pain and suffering, you should strongly consider using an existing implementation rather than trying to build your own.

share|improve this answer
+1 Thanks for your idea! – secretlm Jan 11 at 5:35

I solved my problem with the change:

https://api.twitter.com/1.1/statuses/update.json to 

 https://api.twitter.com/1/statuses/update.json 

and change my application with permission: Read and Write

share|improve this answer
The Twitter 1.0 endpoint is going to be shut down in the near future. Using it for an application you're building right now is a very bad idea. – duskwuff Jan 11 at 5:52
@duskwuff, would you guide me about requesting api 1.1, let say, home_timeline , I am failing in requesting api 1.1 methods for Android. I am getting bad authentication data. – Abdul Wahab May 13 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.