vote up 3 vote down star

When using simple request to post to Twitter the messages are signed with "sent from API". Is there a way to change that to the actual name of your application? Is it another post parameter or something else?

flag

This has been asked before but I can't find the previous question. – musicfreak Jul 11 at 21:23

3 Answers

vote up 7 vote down check

This is covered in the Twitter API FAQ

If you would like tweets from your application to recieve a source parameter, please register an application and implement OAuth authentication. We will automatically include your application as the source for any tweets sent from your application.

link|flag
Thanks John. I want user to save the credentials beforehand and not bother with going to any websites to "Accept". Can I do that with OAuth and is there any code examples? (I do have registered app though) – DroidIn.net Jul 10 at 22:23
Droid, there are several OAuth-related questions already answered on Stack Overflow, many of them Twitter-related, and some of them even appear in the "Related" box on the right side of this very page. Please check those. The comments of an answer aren't the place to cover a topic as big as "How do I use OAuth?" – Rob Kennedy Jul 10 at 22:37
Rob - I don't need tutorial in OAuth. I asked specific question - "can I avoid confirmation step when using OAth?" I'm indeed capable (and I've done that) to read and use manuals and tutorials, ut beiiii, and being very impressed with resource I'm trying to take a shortcut. If this is not appropriate - I apologize – DroidIn.net Jul 11 at 0:17
1  
I don't think you can use OAuth without the confirmation step – John Sheehan Jul 12 at 19:01
Nope, that steps is quite critical to the OAuth process, and the whole OAuth philosophy, really. – Jason Diller Jul 14 at 16:49
show 1 more comment
vote up 0 vote down

If you want example on how to use OAuth and Twitter I have it in my blog

link|flag
vote up 3 vote down

If you are writing a desktop Twitter client and you want your application's name to show up instead of "From API", you have to use OAUth.

If you want to use OAuth in your desktop Twitter application, you have to go through Twitter's PIN workflow (i.e., sending the user to the Twitter website to authenticate).

The confirmation step is part of the reason Twitter is using OAuth. There's no getting around it.

There are several libraries out there that implement OAuth for Twitter so you're not reinventing the wheel.

link|flag
I don't want to circumvent the step (going to twitter page) if user is not authenticated. My problem that user already has set of credentials and by all likeness these are matching Twitter's so I don't want to reprompt user. But then, again - these may not match. I suppose I can try to do post on the Twitter page with HttpClient but it probably would be hard to crack (if indeed it is a straight POST) – DroidIn.net Jul 13 at 15:16

Your Answer

Get an OpenID
or

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