tags:

views:

33

answers:

2

can i tweet from webservice to twitter using oAuth? Could anyone please tell me what I should do?

A: 

The following PHP Twitter libraries support OAuth:

They are fairly similar: about the only difference is that twitter-async uses asynchronous Curl calls to Twitter which may be faster depending on what you are doing with the Twitter API.

Tom Morris
what im face is,how to click automatically ALLOW button when a page An application would like to connect to your account is appear?
sam
Well, you shouldn't. The OAuth workflow should be that they allow you once. After that, you store the returned key and use that.
Tom Morris
becouse its a API webservice,user cant click ALLOW buttton.suggestion?
sam
A: 

If you have a one to one mapping between a twitter account, and your web service, you still need to authorize an access token at least once.

Once you have an authorized access token, you can make twitter requests as needed.

Just a guess that this is what you want though...

Brandon C