What's the single best use you've put cURL to ?
|
|
|
|
|
|
|
A FASTCGI proxy that runs LibXSLT on any xml with a PI for the stylesheet. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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! |
||||
|
|
|
I use it as an ad-hoc test harness for RESTful web services. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
From some cURL documentation:
|
||
|
|
|
|
Most of my eCommerce plug-ins use CURL to post the CC info to the provider, over SSH. |
||
|
