Hot answers tagged curl
3
The error is that you don't return the correct value from the function, in fact you don't return anything.
Also, the data provided to the function is actually the first ptr argument.
I agree that the documentation is not very clear, but it says:
The size of the data pointed to by ptr is size multiplied with nmemb, it will not be zero terminated.
...
3
There is several different things to distinguish here:
jobs : you have N jobs to process. Executed tasks can crash or hang, in any way all jobs should be proceeded without any data loss.
resources : you are processing your jobs in a single machine and/or in a single connection, so you need to take care of your cpu and bandwith.
synchronization : if you ...
3
This is probably a HTTPS certificate issue; check this past question:
Can't connect to HTTPS site using cURL. Returns 0 length content instead. What can I do?
3
Split the data into two fields:
$postdata = array(
'json' => json_encode($whatever),
'zipfile' => '@/path/to/yourfile.zip'
);
curl_setopt($curl, CURLOPT_POST_FIELDS, $postdata);
Then on the receiving end:
$json = json_decode($_POST['json');
$file = $_FILES['zipfile'];
3
$url = "http://engin.umich.edu/college/about/cal/event-calendar/futurejson";
// missing / ^
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
// It's returning a redirect to www.engin.umich.edu
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$feed = ...
2
You can set your user-agent to Googlebot's (more info on the exact user-agents used on Google's KB):
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)');
This might not always work though! Some websites may choose to Reverse DNS check anyone claiming to be Googlebot.
2
I recommend you take a look at this library called PHP-Queue: https://github.com/CoderKungfu/php-queue
An short description from its github page:
A unified front-end for different queuing backends. Includes a REST
server, CLI interface and daemon runners.
Check out its github page for more details.
With a bit of tinkering, I think this library will ...
2
To summarize the conversation in the comments:
There is no need to use simplejson library, the same library is included with Python as the json module.
There is no need to decode a response from UTF8 to unicode, the simplejson / json .loads() method can handle UTF8 encoded data natively.
pycurl has a very archaic API. Unless you have a specific requirement ...
1
The privilege elevation only applies to the curl process (and, in the second example, the child shell) itself, not to your (parent) shell, and therefore not to the redirection.
One solution is to do the redirection within the child shell itself:
sudo bash -c "curl $LINK >a.txt"
Another, fairly idiomatic option is to use tee:
curl $LINK | sudo tee ...
1
I'd write it as 2-3 programs. One that extracts the data, one that formats the data (if necessary), one that posts the data.
My gut tells me the easiest way to do this is a pure bash script. But if you want to use Java for this you can.
I would save the output in a file for the post-er to read from. This has the benefit of letting you write/test the ...
1
Try changing this:
$html->load($curl_scraped_page);
To this:
$html->load($curl_scraped_page, true, false);
The problem is that simple_html_dom removes all \r \n by default and in this case it breaks javascript code since yahoo don't end it with a semicolon.
You can see this error at the browser console and you can also see that simple_html_dom ...
1
I think I would add a function to the class
function loadWithoutRemovingStuff($str, $lowercase=true, $stripRN=true, $defaultBRText=DEFAULT_BR_TEXT, $defaultSpanText=DEFAULT_SPAN_TEXT)
{
$this->prepare($str, $lowercase, $stripRN, $defaultBRText, $defaultSpanText);
while ($this->parse());
$this->root->_[HDOM_INFO_END] = ...
1
Two ways:
Rename the tmp file. It is accessible to you, so renaming it is trivial: rename(oldname, newname)
Send a mimetype. The format is: @filename;type=image/png for a png.
Prefer the first option if you care about the filename, option two if you only care about the mime type.
1
Welcome to StackOverflow! In the following line of code you pass an invalid parameter $ch which has not been defined. Change it to $curl_connection.
Was:
curl_setopt($ch, CURLOPT_POST, 1);
Should be:
curl_setopt($curl_connection, CURLOPT_POST, 1);
Edit:
You also never applied the headers you defined to your request. You should do this:
...
1
You
can use curl
with the POST verb
curl -X POST -u svnpenn -k \
-d '{"name":"tcl-8.5.13.tar.gz","size":130073}' \
https://api.github.com/repos/svnpenn/etc/downloads
1
$ch = curl_init('http://www.google.com/');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
preg_match('/Set-Cookie:[^\r\n]+/', $response, $match); // extract cookie header
$cookie_header = preg_replace('/domain=[^;\r\n]+/', 'domain=.mydomain.com', $match[0]); // replace old ...
1
It looks like you are missing two hidden fields that are in the source of that form. CSRF protection kinda. You can try scrapeing that, by doing a third request, before the other two, and getting those values, and putting them in the second request.
Also, like i said in my comment above, dont close your curl handler.
Any more info you can give would be ...
1
Try the options like this:
CURLOPT_USERAGENT => 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
CURLOPT_COOKIEFILE => 'anc.tmp',
CURLOPT_COOKIEJAR => 'anc.tmp',
CURLOPT_FOLLOWLOCATION => 1,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => 0,
...
1
I recommend using this class:
http://semlabs.co.uk/journal/object-oriented-curl-class-with-multi-threading
It will be something like this:
$c = new CURLRequest();
$c->retry = 2;
$c->get( $url, $this->curlOpts );
$url = 'https://secure.login.co.uk/';
$opts = array(
CURLOPT_USERAGENT => 'Mozilla/5.0 (compatible; Googlebot/2.1; ...
1
There are a number of issues with this.
One is that a lot of sites DO and SHOULD use SSL for logins. In that case, you'll need the CURL opt:
CURLOPT_SSL_VERIFYPEER
Secondly, some sites require you load a page of their site before you can use their submit form.
Third, some sites may use 301 redirects. I have seen some that even use META redirects after ...
1
So first of all, when working with verbs using curl, you have to use -X VERBNAME, e.g.,
~# curl -X POST http://httpbin.org/post
{
"url": "http://httpbin.org/post",
"data": "",
"json": null,
"args": {},
"form": {},
"origin": "127.0.0.1",
"headers": {
"User-Agent": "curl/7.19.6 (x86_64-unknown-linux-gnu) libcurl/7.19.6 OpenSSL/0.9.8n ...
1
Page 2: there is a limit for SO answer's body to 30k chars, so I need to create a new one.
Keep control on results
No mistake allowed!
YEAH ! You can launch tons of processes without taking care of resources. But what if one child process fails? There will be one undone or incomplete job!...
In fact, this is simpler (far simpler) than controlling ...
1
One way to do it
w=(
'\nEffective URL: %{url_effective}'
'\nSize: %{size_download}'
'\nTotal time: %{time_total}'
'\nRedirect URL: %{redirect_url}'
)
curl -Ss --include --location --config curl.config -w "${w[*]}" icanhazip.com
When you do it your way, word splitting is happening, so the -w string is split up on each space instead of being passed ...
1
A bit of a hack, but if the format of tte response is always roughly the same, the following might work for you:
?php
// the message would come from somewhere else; I hard code it to test the expression that follows:
$msg='<s:envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">
<s:header>
...
1
Dont try & write an API engine, these are industry standard. Look at Soap or REST.
Here are some of the libraries out there that will do all the heavy lifting:
Soap server http://framework.zend.com/manual/2.0/en/modules/zend.soap.server.html
Soap client http://framework.zend.com/manual/2.0/en/modules/zend.soap.client.html
Rest server
Rest client
...
1
Your target website may require/check a combination of things. In order:
Location. Some websites only allow the referer to be a certain value (either their site or no referer, to prevent hotlinking)
Incorrect URL
Cookies. Yes, this can be checked
Authentication of some sort
The only way to do this is to sniff what a normal request looks like and to mimic ...
1
Because there is a hash on the site you're trying to send a request, you probably wont be able to get this done. Hash mechanism makes it impossible to send request straight to the URL stated in action param of form tag. It's designed particulary to prevent such action you want to make. Still, since there is no captcha you can try web automation.
What you ...
1
Hi try this script code (Sorry not tested ,Lemme know if it will not work): save it as run.sh . then u can run ./run.sh 100 .It will execut merely at the same time .
#!/bin/bash
for i in $(eval echo {1..$1})
do
curl -i -H 'Content-Type: text/plain' -X POST -d @hundredencoded http:///aaa/bbb/message &
#gnome-terminal -x bash -c "curl -i -H ...
1
After your CURL request is done, use curl_getinfo with the CURLINFO_EFFECTIVE_URL option. Done.
Compared to the other (complicated) answers, this will provide you the full URL that your request "ended up on".
1
$response = curl_exec($ch);
$info = curl_getinfo($ch);
$response_header = substr($response, 0, $info['header_size']);
$response_header = parseHeaders($response_header, 'Status');
$content = substr(response, $info['header_size']);
$url_redirect = (isset($response_header['Location'])) ? $response_header['Location'] : null;
var_dump($url_redirect);
/*
* or you ...
Only top voted, non community-wiki answers of a minimum length are eligible




