is it possible to tweet by sending an HTTP post request from our app. If so, can anyone tell how is that done.
Asked
Active
Viewed 259 times
-2
-
1The Twitter API: https://dev.twitter.com/docs – Marc B Nov 04 '11 at 17:51
-
1A simple Google search would have turned up http://twitter4j.org/ – Philipp Reichart Nov 04 '11 at 17:52
1 Answers
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