vote up 1 vote down star

What's the single best use you've put cURL to ?

flag

14 Answers

vote up 0 vote down

A FASTCGI proxy that runs LibXSLT on any xml with a PI for the stylesheet.

link|flag
vote up 0 vote down

I use curl to connect to multiple APIs from the same script and retrieve the information. I've also used CURL to post out information to multiple form processors.

link|flag
vote up 0 vote down

With PHP, I've used cURL for creating a bot for a popular web based strategy game and for remotely parsing web pages for useful information.

It is a very useful library for most actions related to web pages and I plan to use it in my future C projects as well.

link|flag
vote up 0 vote down

I use it to develop programs that login to a site and do automated stuff, like remotely adding a comment to some site, etc.

But there are a lot more uses for it.

link|flag
vote up 2 vote down

Twittering

link|flag
vote up 1 vote down

I used it the Asterisk dialplan. You can Curl Servlets so your dialplan reacts to your website and ultimately java objects.

Also use it in bash scripts where the strip can "ask" a webpage for values. Curl its great!

link|flag
cURL rocks with Asterisk. I actually added the patch for the POST data option that is in func_curl for Asterisk – Roboto Dec 1 at 16:41
Awesome, I havent yet program a funtion in asterisk. I posted a question I believe you could easily respond please checkout stackoverflow.com/questions/1924982/… – JorgeO Dec 17 at 22:17
vote up 2 vote down

I use it as an ad-hoc test harness for RESTful web services.

link|flag
vote up 0 vote down

I use cURL for automating tasks on web applications where I don't have access to cron. I set up a cron task on a machine I do have access to that hits a URL to run a scheduled job.

link|flag
vote up 0 vote down

curl can easily get the public IP info from http://whatismyip.com/automation/n09230945.asp and show it to you on the command line. I also use it to test form POST data on some systems without having to type stuff on a webpage.

link|flag
vote up 1 vote down

I've hooked it up to a scheduler to do HTTP posts to a legacy ASP web site. It was a 3rd party portal that would take a very long time to load when the site was idle for a period of time. Since I didn't have access to the source and the company was no longer around this was a quick and dirty solution that kept the site running for quite some time.

link|flag
vote up 0 vote down

Note that vanilla cURL on Windows (last time I checked, anyway) is in the habit of using the very risky call TerminateThread() to deal with stalled connections, which can wind up killing threads while they are holding an important critical section and deadlocking the rest of your program. On Windows, build cURL with c-ares to avoid this.

link|flag
vote up 1 vote down

We use libcurl for almost all HTTP client access in our C application. For command-line use, I've never had any reason to abandon wget.

link|flag
vote up 0 vote down

From some cURL documentation:

curl offers a busload of useful tricks like proxy support, user authentication, FTP upload, HTTP post, SSL connections, cookies, file transfer resume and more.

link|flag
vote up 1 vote down

Most of my eCommerce plug-ins use CURL to post the CC info to the provider, over SSH.

link|flag
Which one(s) do you use? How are the prices?? I posted something and never got a decent answer. stackoverflow.com/questions/53444/… – nlucaroni Sep 15 '08 at 21:27

Your Answer

Get an OpenID
or

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