Volatil3
Volatil3

Reputation: 15008

Getting twitter oAuth user and secret key

I have made a php script for tweeting via API. Right now I added an app(say "MyTweets") in my twitter account and got secret and oAuth key. Now I want others to use it. Right now I have put hard coded Key and secret, how can I automate it so that use can 'Add' their twitter account in my application or atleast I can store their oAuth/Secret for automated use. I just don't want to add new apps every other twitter account.

Upvotes: 1

Views: 2059

Answers (2)

Sujeet
Sujeet

Reputation: 1800

go to the link below: https://dev.twitter.com/apps/new

Fill up the form then submit.

now you will get your oAuth user and Secret Key

Upvotes: 3

Flyingdiver
Flyingdiver

Reputation: 2142

See the API docs at Twitter. You're going to need to implement OAuth in your application so that the user can authenticate with Twitter and you get back the authentication token you use in your application.

Upvotes: 0

Related Questions