-2

is it possible to tweet by sending an HTTP post request from our app. If so, can anyone tell how is that done.

user1002448
  • 425
  • 8
  • 22

1 Answers1

0

As @Marc B suggests, if you check out the Twitter API documentation, you will find that publishing a tweet via POST is achievable by sending a request to "https://api.twitter.com/1/statuses/update.json" with the parameters outlined in the API docs.

Do you have a unique question regarding your application? You may wish to edit your question to provide a detailed description of your specific situation so that we can be more helpful.

Andrew Kozak
  • 1,631
  • 2
  • 22
  • 35
  • i dont know how to exactly use https://api.twitter.com/1/statuses/update.json.. i went through the docs, but didint understand how to implement it – user1002448 Nov 04 '11 at 18:01
  • If you need to know how to POST data, check out [this answer by PrimalPop](http://stackoverflow.com/questions/2938502/send-post-data-in-android). Is that what you were looking for? – Andrew Kozak Nov 04 '11 at 18:05