wastedhours
wastedhours

Reputation: 257

Sending a tweet using Authlogic-OAuth

I'm building a Rails application which uses Authlogic for authentication, which I've now set-up to run using the OAuth extension, meaning a user can be created by signing in from Twitter.

This stores their OAuth token and OAuth secret, meaning they're accessible, but I was wondering how I would actually go about sending a tweet using these?

So, with the users credentials, how do I format the POST request, and how do I do this in the controller.

Thanks.

Upvotes: 0

Views: 418

Answers (1)

Tom
Tom

Reputation: 981

Your best bet would be to use a gem like such: http://twitter.rubyforge.org/

Upvotes: 1

Related Questions