views:

438

answers:

4

I wish to use a command-line application, like cURL, to do some test posts to my test twitter account. I also wish to do this with OAuth authentication.

How I can do this? Assume I already have created an application, in Twitter, and received my keys and stuff.

(Also, please make sure you specify which key to use, and where, in the command line, etc.).

Finally, I'm under the (uneducated) assumption that this is possible with a single command line.

A: 

You can see a list of Twitter API libraries in different languages here. At least one of them works with Curl.

Ken Liu
+1  A: 

I don't think you can do it in one shot. OAuth requires that you respond with the token when you make the status request, which would be outside the scope of a single one-line curl request.

What you could do instead is use a simple library like the Twitter Ruby gem, which would be able to accept parameters at the command line and then produce the appropriate results.

John Feminella
so .. if u can't do it with the command line ... and Twitter will deprecate their BASIC AUTH in the middle of the year .. does that mean that we won't be able to use Curl for any HTTP-POST examples?
Pure.Krome
That's about right. But like I said, you could always use multiple requests or a simple library like the Twitter gem, linked above.
John Feminella
ack. that's rough :( :( :( not much I can do about that, then. I'm sorta shocked by that... :( no easy way to now test twitter, then it seems _from_ the command line... *whimpers slightly*
Pure.Krome
+2  A: 

Well, you're not the only one that's wished they could try out an OAuth-protected API with a simple curl command. You might look at oauth-proxy which sets up an HTTP proxy on your own machine with the appropriate parameters for tokens and secrets. Then any request which uses that proxy (like a curl command, for example, or even a web browser that's configured to use it) will automatically be signed with all the appropriate OAuth parameters.

Seth's walkthrough even includes the example of Twitter, so you should be able to follow the instructions step-by-step (assuming Twitter's OAuth works the same way it did in September 09).

This isn't quite as simple as a single line, since it involves installing some software and at least one additional command for setting up the proxy. But it should at least enable the goal of allowing easy, single-line tests with curl once things are set up.

npdoty
A: 

Twitter actually came out with a modified version of cURL call Twurl. It is a ruby GEM that should do what you need.

beriberikix