Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

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

for more detail about this info browse the link below:

http://blog.developeronhire.com/category/miscellaneous-3/

share|improve this answer
i am able to find key and secret,point is, how others will use my app?right now I have hard-coded oauth key and secret, how others can use my website? how to get their key and secret? – Volatil3 Mar 4 '11 at 4:23

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.