cURL is a library and command-line tool for transferring data using several protocols such as HTTP, FTP and Telnet.
5
votes
0answers
312 views
How do you send to Transunion API with pkcs12 (p12) certificate?
I am having trouble connecting to TransUnion's test API via php using cURL. Please let me know if anyone has already done this. I already have my XML file ready to send to them, I just don't know what ...
3
votes
0answers
43 views
alternative to mget to move local file with local images
I have a local html page on disk, containing relative links to multiple images in subfolders. I wish to copy this page with all its content into a different directory. A web browser (e.g. Firefox) ...
3
votes
0answers
549 views
cURL failed to initialize
Trying to install npm for node v0.6.2 using
$ curl http://npmjs.org/install.sh
but encountered error from cURL saying,
curl: (2) Failed initialization.
I tried cURL other links also, but same ...
2
votes
0answers
61 views
login to https site using curl
i am trying to login to a site. this site use auto submit from and a random key for submitting form. i have tried several ways but couldn't get through. so here is my codes. any answer will be ...
2
votes
0answers
78 views
Get Google Search Images using php
Search on Google images with car keyword & get car images.
I found two links to implement like this,
PHP class to retrieve multiple images from Google using curl multi
handler
Google image ...
2
votes
0answers
59 views
How to use curl get HTML code of webpage that include ajax(lazy load)?
I use curl to get html code of webpage for server side.
This is a part of my code
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($this->ch, CURLOPT_URL, $this->url);
...
2
votes
0answers
68 views
mongolab rest api return null response
When I execute below code it work fine.
$url = "https://api.mongolab.com/api/1/databases/$DB/collections/$COLLECTION?apiKey=$MONGOLAB_API_KEY";
$ch = curl_init();
curl_setopt($ch, ...
2
votes
0answers
92 views
Uncaught CURLEXCEPTION in facebook login - php sdk
Sometimes, especially, when I am not logged in Facebook, an error shows in my login page with the code pasted from the php-sdk. You can see the output at http://jnfp.tk/login.php. When I refresh the ...
2
votes
0answers
43 views
google cloud storage access through curl get signature error
i am trying to access my google cloud storage through apis with curl. here is what i am doing in the reminal (osx) :
ACCESS_KEY="my key here"
SECRET_KEY="my secret here"
VERB=GET
CHECKSUM=""
...
2
votes
0answers
111 views
asp.net file upload using php curl
I am trying to upload a file using php curl toasp.net form. I am sending an array using an @ before the file name but it is not recognize my file to the asp.net server. Is there any specific way to ...
2
votes
0answers
62 views
“No symbol version section for versioned symbol”
I'm attempting to cross-compile my own shared library (libmystuff.so) against another shared library (libtheirstuff.so) that makes use of the libcurl shared library and am getting the following error:
...
2
votes
0answers
32 views
Is it okay to send blog update pinging without “weblogUpdates.ping”?
From http://unix.stackexchange.com/a/36455/17948
the cURL to send is
$ curl <target-pingservice-url> -d 'name=<your site name>' -d url=<your-url> -d rss=/rss.xml
As far as I ...
2
votes
0answers
121 views
CURL request using socks5 proxy fails when using PHP but works through the command line
CURL + proxy noob here, having a hard time. I'm having trouble trying retrieve a web page from a remote secure server via a proxy. Everything has apparently been set up correctly by a remote dev, such ...
2
votes
0answers
181 views
Make two linear cURL requests over TOR with same IP
Before response my question - be awared that's not related to the following subjects:
cURL: two seperate requests, same session
select outgoing ip for curl request
PHP Multiple Curl Requests
I'm ...
2
votes
0answers
110 views
Reusing handles from cURL multi handler
Well, I am attempting to reuse the handles I've spawned in the initial process, however after the first run it simply stops working. If I remove (or recreate the entire handler) the handles and add ...
2
votes
0answers
76 views
cURL issue on php5
I recently change my server to php5, the below code was working good on old server(php 4)
but now it stop working on my new server(php5). Its not showing any error message.
...
2
votes
0answers
168 views
PHP Copy Dynamically created TIFF image from remote server
I've written a script that searches through exiting legal case dockets for things like "motion to intervene" and "motion to compel". If the regular expression returns true, then it looks to see if ...
2
votes
0answers
153 views
How to use imap_open behind proxy?
I don't really know how to ask this question so I'll just ask it as best I can. Is it possible to use a proxy connection to read mail from a pop3 or imap server using PHP's imap_open?
I would prefer ...
2
votes
0answers
130 views
PHP: What is fastest SOAP, file_get_contents or Curl?
I have website A that is sending request on each page load in header to website B.
B server is doing some internal search in mysql and need to return some data to server A that will display some ...
2
votes
0answers
117 views
curl-like tool for wsgi over unix domain socket
Is there a command line tool to send requests directly to a wsgi application (django) listening on a unix socket?
An equivalent of:
curl -X GET http://example.org/index.html
But that would ...
2
votes
0answers
193 views
php curl with digest returns two responses
I have spotted a "weird" php CURL behavior that is sending me nuts. Basically what I am doing is making a digest authenticated call with curl. Here's an extract of my code:
curl_setopt($this->c, ...
2
votes
0answers
111 views
Debug authorisation in R curl using NTLM
I am trying to access a URL from a windows (sharepoint 2007) web server within a corporate network. I'm using R and curl but can't seem to get the authorization part right. (There is no proxy or ...
2
votes
0answers
141 views
How to Debug Libcurl in Xcode 4.5
we are in the process of porting our application from Windows to OSX and I am having some problems with Curl, unlike the windows version it wont allow me to choose the symbol location in Xcode in ...
2
votes
0answers
404 views
Unknown SSL protocol error in connection to www.googleapis.com:443 PHP google anaytlics api
I am using the google anaytlics api, I am querying how many visits 100 sites have, this process takes around 6 minutes or so. The problem is that it runs some of the results until it comes up with the ...
2
votes
0answers
708 views
window 8 64bit RTM & PhP Curl enabling
i have a Windows 8 RTM 64 bit installed on a machine.
Also i installed wampserver2.2e-php5.3.13-httpd2.2.22-mysql5.5.24-x64 on it.
But the php CURL extention just wont work on it...
I tried enabling ...
2
votes
0answers
161 views
DirectAdmin php api creating users
I want create php script witch will be able create users in DirectAdmin, for this is command
/CMD_API_ACCOUNT_USER:
`MyServer.com:2222/CMD_API_ACCOUNT_USER?action=create&add=submit....`
But, ...
2
votes
0answers
386 views
Compilation warning: no rule to process file of type sourcecode.c.c for architecture i386
I'm try to build libcurl as static library for iOs with xcode 4.2 + sdk 5.0 on OSX 10.6.8 with
apple llvm compiler 3.0 or LLVM GCC 4.2.
It's compiled successfully (with both compilers) but have many ...
2
votes
0answers
349 views
SoapClient not sending certificate
I've been reading all the questions/answers I could find but none have solved my problem..
here's the connection to the same url using cURL and a certificate($pem = absolute path to .pem file)
this ...
2
votes
0answers
683 views
Curl error - Empty reply from server (ssl)
I have problems accessing certain URL using curl on OSX. For other urls I receive response, and for this specific UWL I can receive response from other, ubuntu machine.
I am stucked and do not know ...
2
votes
0answers
322 views
How to speed up sending mail via Amazon SES?
Sending half a million emails takes too long: 6 to 8 hours. Quota allows 90 emails per second. Sending from a dedicated server with nice performance, so memory/connection should not be the issue. ...
2
votes
0answers
877 views
Fetch gmail contacts using google API, showing error account disabled
I am using PHP. I want to fetch all gmail contacts of a user, i am using a PHP code that is calling google API through CURL. But, when i am doing this on localhost, it is doing well and giving me all ...
2
votes
0answers
419 views
Yahoo openid check_authentication returning is_valid: false
Yahoo openid check_authentication always returning is_valid:false
am I missing some parameters ?
https://open.login.yahooapis.com/openid/op/auth?
...
2
votes
0answers
632 views
php with curl ssl error: unsupported protocol
When I run a php test script trying to connect to the Rackspace API over https using curl and my Macports php installation I get an unsupported protocol error (with curl verbose set to true). See ...
2
votes
0answers
164 views
urllib2 gives inconsistent output - often part of the webpage is downloaded
I am using urllib2 to open and save a webpage. However, often only a part of the webpage is downloaded, whereas sometime the full page is downloaded.
import urllib2
import time
import numpy as np
...
2
votes
0answers
980 views
Implementing CURL with Visual Studio 2010
I am trying to compile a program that uses Curl in Visual Studio 2010 on Windows Vista x64. I downloaded the latest version of Curl 7.23.1 from the official website and unzipped it to C:Program Files. ...
2
votes
0answers
286 views
How do i set cookies form http header “Set-Cookie: ” using curlpp
Hallo, how can i set this cookie using curlpp or libcurl when recieving response from server? I havent found anything, so do i have to handle it myselves? I dont want to set cookies to concrete http ...
2
votes
0answers
826 views
PHP, CURL, WebDAV, and SEARCH method
How would I recreate the following curl statement in PHP?
curl http://www.example.com/path/to/folder/ -X SEARCH -d @dasl.xml
Here is what I have so far, and the "dasl.xml" file is what is tripping ...
1
vote
0answers
8 views
Unable to purge using CURL on VARNISH
I am unable to purge objects in varnish using CURL
CURL command:
curl -X PURGE localhost/public/stylesheets/main.css -v
the curl command is returning 200 OK response. the object is not getting ...
1
vote
0answers
6 views
How can I ensure that curl uses openssl, and not nss?
Is it possible to ensure by a configuration parameter, that curl uses OpenSSL, and not NSS to retrieve https content? I need to ensure this, in order to enforce compliance with FIPS140-2, which ...
1
vote
0answers
25 views
Separate hostname and path in cURL
Is there a way to separate the hostname and path when using cURL? I would like to make a request to the server itself, not on a particular resource, as described below by IETF:
The four options ...
1
vote
0answers
42 views
Node.js Scraping: Not receiving query string on 302 redirect location
I've tried Node.js' HTTPS class and also Mikeal's "request" library. Either way, when scraping a certain website that returns a 302 response, I can not retrieve the query string parameters. See below ...
1
vote
0answers
36 views
Google Geocoding API suddenly very slow
I was working on a site about a month ago that calls Google's geocoder and returned the results almost instantly. Now when I attempt the call, it takes about 8 seconds. Is anyone having problems ...
1
vote
0answers
216 views
graph.facebook.com/me?access_token=<token> returns “Cannot call API on behalf of this user”
Receiving an OAuthException when:
curl https://graph.facebook.com/me?access_token=
but only when I curl from my AWS-based web server. If I run the exact same command from my local machine, it ...
1
vote
0answers
59 views
couchdb update handler for PUT for JSON query param not working
I am working on update handlers with couchdb and am facing this strange problem:
Here goes my update handler:
"updates": {
"temp": "function(doc, req) {var inc_amount ...
1
vote
0answers
29 views
PHP cURL function on Wikipedia.org sends arbitrarily encoded stream of characters
I have a simple site to access Wikipedia through a cURL function, http://wiki-iit.site11.com/.
However, the output returned in some cases is in a poorly encoded form. For example, say when the input ...
1
vote
0answers
66 views
PHP curl initiated with bash or file_get_contents - slow
I have a simple PHP curl script that checks my localhost for updates and etc. It works fast, if I open the .php in a browser - it loads instantly. However if I want to integrate the file using ...
1
vote
0answers
47 views
PHP cURL parsing through links on a webpage
So this is the script I am working with. It stores all links on a specified webpage, but what I am wondering is how do I make it so it only stores links in a certain part of a webpage. The part of ...
1
vote
0answers
68 views
how to direct php curl through proxy by default
I'm trying to set up a php project which use curl and my setup is behind a proxy. The script can access urls through proxy with the below set up.
$url = 'http://dynupdate.no-ip.com/ip.php';
$proxy = ...
1
vote
0answers
47 views
cURL in wamp - 415 unsupported media type AdWords
I am using version 201302 of theAdwords API. I have WAMP Server version 2.2 installed and since curl was not working out if the box, I also installed curl from ...
1
vote
0answers
47 views
How can I send the Null Parameter on php soap request envelope?
I have been trying this for some days now without any success
This is my code:
<?$requestPesquisaTarifas = '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope ...


