0

How would I get a web app (for example, @Example) to do the following for an authenticated user?

  1. Send a status update (send a new tweet, ie. "I just used the new @Example app!")
  2. Follow @Example

In one click... Can someone point me in the right direction? Thanks! ♥

4 Answers4

0

If you don't mind little $ use tweetapart.com it's the easiest tool I found, it supports auto hashtagging too.

http://tweetapart.com/tweet?api_key={API_KEY}&status={YOUR_STATUS}
Harv
  • 1
  • 1
0

Using the REST API, you could call statuses/update with your tweet text, and then (after receiving a 200 response code denoting a successful update) you could call friendships/create to then follow @Example using the screen_name parameter.

arcain
  • 14,920
  • 6
  • 55
  • 75
0

Check this out:: http://dev.twitter.com/doc/get/statuses/followers

Ishank
  • 2,860
  • 32
  • 43
0

REST API provides simple interfaces, that perform all integrations with Twitter. Document describes REST API Resources such as: Timelines, Tweets, Search, Direct Message, Friends & Followers etc.

Twitter OAuth with .NET describes how to implement Twitter OAuth and send Twitter status update.

Fionaa Miller
  • 501
  • 4
  • 4