Odyss3us
Odyss3us

Reputation: 6635

Using OAUTH to post to a twitter users wall

would it be possible to post to different users walls authenticating with OAUTH?

Basically what I would like to do is authenticate a user, and then post something to their wall, this is all with the users knowledge of course, so the user would be greeted with a login screen, they log in, and something gets posted to their twitter wall using a PHP sdk.

Thanx in advance!

Upvotes: 1

Views: 1001

Answers (2)

arcain
arcain

Reputation: 15270

In addition to the basic low-level REST API statuses/update method, which your PHP SDK would invoke, Twitter also offers @anywhere, a Javascript API that let's you pretty quickly integrate with the service. The TweetBox is the widget that would allow your users to post status updates from your site.

Upvotes: 0

Quentin
Quentin

Reputation: 943108

Yes!, you can find more info in this article

Upvotes: 2

Related Questions