1
vote
1answer
20 views
PHP Curl Paypal Sandbox
Is it possible to use CURL and Paypal's Developer Sandbox? When I try this code it says in print_r($lines); that I need to login to the Sandbox, how can I make it send my browser …
0
votes
8answers
91 views
Non-browser emulation of JavaScript - is it possible?
I have a new project I am working on that involves fetching a webpage, (using PHP and cURL) parsing the HTML and javascript out of it and then handling the data in the results.
B …
0
votes
1answer
19 views
curl + sessions
Hello!
I'm making POST requests with CURL, and I would like to output cookies made during that request... Is that possible? :)
0
votes
1answer
21 views
curl error 18 - transfer closed with outstanding read data remaining
Hello,
when retrieving data from a URL using curl, I sometimes (in 80% of the cases) get
error 18: transfer closed with outstanding read data remaining
Part of the returned data …
0
votes
1answer
11 views
SFTP from PHP - undefined constant CURLOPT_PROTOCOLS and CURLPROTO_SFTP?
From my php script, i need to be able to upload a csv file to a remote server via sftp. I followed the accepted answer from this question:
http://stackoverflow.com/questions/7178 …
0
votes
2answers
31 views
perform cURL functions in CodeIgniter
I have to perform import-content functions from remote pages from my website using page urls provided by users. In short what digg, mixx, designfloat, etc do when we submit a story …
0
votes
2answers
48 views
Curl setting Content-Type incorrectly
I am running a curl operation on the command line and am having trouble forcing the header to set as XML. I use the -H option to force the Content-Type to be xml, however, once I r …
0
votes
2answers
48 views
CURL / screen scrape delivery tracking details from Canada Post
I need to obtain delivery tracking details from the Canada Post website, which does not offer an API.
I've formulated a URL that when entered into a browser correctly returns the …
0
votes
2answers
40 views
Reading 200 urls automatically with varying intervals between requests
By calling the example URL below my Java servlet caches one file at a time (with corresponding "filekey").
http://www.example.org/JavaServlet?fileKey=phAwcNAxsdfajsdoj&action= …
0
votes
1answer
21 views
AuthSub token from Google/YouTube API is always returned as invalid
Anyone out there have experience with the YouTube/Google API?
I am trying to login to Google/Youtube using clientLogin, retrieve an AuthSub token, exchange it for a multi-session …
0
votes
1answer
28 views
With php cURL get filename from file header
Hello, I have this php cURL function:
function curl_login($url,$data,$proxy,$proxystatus){
$fp = fopen("cookietlt.txt", "w");
fclose($fp);
$login = curl_init();
curl_setopt($logi …
3
votes
3answers
41 views
PHP Curl adds ‘\’ to apostrophe character sending to ASP page
I have a 3rd party server which has a classic ASP page which takes in form data. From my web page I have a PHP script which sends fields to the ASP page using curl. Everything wo …
1
vote
2answers
45 views
How do i check if php server allows external curl connections
How do i check if php server allows connecting via curl to external sites before buying hosting package (or registering on free host)? I noticed that in some hosting reviews users …
1
vote
4answers
88 views
How do I use a Perl CGI locally without using curl and apache2?
I would like to submit a form to a CGI script localy (w3c-markup-validator), but it is too slow using curl and apache, I want to use this CGI script more than 5,000 times in an ano …
0
votes
4answers
35 views
how to use curl to post message to a facebook business page?
I wonder there is a way to post a message to a facebook business page with cURL?
thanks
