cURL is a library and command-line tool for transferring data using several protocols such as HTTP, FTP and Telnet.
-3
votes
0answers
17 views
What is wrong with this installer?
This shell script is supposed to install a game from my from github. It works on my partner's computer, but not mine. We are running mac osx 10.8. Onmy computer, the files don't download but the ...
0
votes
1answer
5 views
How can i specify SSL version in curb
I am interacting with an API that requires SSL3
From the command line i form the request like:
curl -ssl3 -H 'Authorization: Bearer XXXX' https://capi-eval.signnow.com/api/user/documentsv2
With ...
0
votes
0answers
23 views
PHP video site parser
so I've been working on a php parser. Essentially what is it supposed to do is parser filenuke for a video url. However, when running the following script and clicking play it says video not found, ...
0
votes
0answers
17 views
SOAP request in PHP with CURL, wsa-addressing, ws-security
How can I create PHP SOAP request to look like this?
POST http://xxx.com/xxx/ws/test HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: ...
-1
votes
0answers
51 views
How to get all HTML before and after page load?
I use simple_html_dom and curl to get HTML.
My code:
<?php
header('Content-Type: text/plain; charset=utf-8');
error_reporting(E_ALL);
## [Config]->Define
define('APPLICATION_HTTP', ...
0
votes
1answer
14 views
how to auto fill and submit html form with curl
I want to auto fill an html form and submit the form and display the result. I used below code got from here.
<?php
//create array of data to be posted
$post_data['email'] = 'myemail';
...
0
votes
1answer
25 views
PHP curl json for twitter not working
This code is not working:
$ch = curl_init ("https://api.twitter.com/1/statuses/user_timeline/ijustine.json?callback=twitterCallback2&count=4");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
...
0
votes
1answer
20 views
unable to set private key file: './cert.pem' type PEM
I am using curl command line to download the data from https site using public certificate files.
below are my lib version:
os :fedora 14
curl:curl 7.30.0
openssl:OpenSSL 1.0.0a-fips
command is,
...
0
votes
1answer
6 views
OAuthException: This authorization code has been used
I have facebook application where I have used php CURL for authorization and to get access token and facebook user id.
I have following code for allowing user access:
function AlowUserAccess()
{
...
0
votes
0answers
21 views
CURL permission denied via browser, works on ssh
Yesterday I have changed my usergroup/user on my linux host for a group of files. Today I found out that CURL is rising a permission denied (only on browser access, works on SSH)
Couldn't send ...
0
votes
2answers
34 views
CURL JSON REQUEST AS GET
example.com URL
I am calling this url but getting jsonCallback({"ERROR": "6"});
Can not understand what is this ? Googling many times for the error but could not find out anything helpful. this is a ...
0
votes
2answers
23 views
Combining CURL and simple html dom
I have been working with CURL to scrape websites for a while and also Simple HTML DOM. I experienced that CURL is much better for scraping websites. However I really like the simplicity of Simple HTML ...
0
votes
1answer
22 views
login form requiring loading the page first php curl
I posted this as php/curl but am open to any working solution.
example.com/login.asp has a hidden value inside the login form:
input type="hidden" name="security" value="123456789abcdef"
I tried to ...
0
votes
0answers
11 views
curl Request with ASP.NET
I have read some other posts on Stack but I can't get this to work. It works fine on my when I run the curl command in git on my windows machine but when I convert it to asp.net it's not working:
...
-1
votes
2answers
28 views
Access Website via Anonymous Proxy [closed]
I want to access websites such as Facebook from my Work network through my website, So How do I set up a proxy that will direct me to the website without showing the real address? Thanks.
2
votes
1answer
30 views
PHP: Send uploaded file with curl without uploading to initial server
I currently have a site which allows file uploads. When the user submits the form, I run a php script that sends off a curl request to my api.
Currently the php request looks like this:
$params = ...
0
votes
1answer
21 views
Sending json files in curl requests with absolute or relative paths
Just wondering how I can send a curl command with the -d option specifying a file with its path and not a file in the current directory.
This is what I'm getting when I try to test my app with the ...
0
votes
1answer
14 views
cURL code for registration form to web app not working showing top of page
I have created a cURL php file & included it into my index.php file. Part of the code is displaying at the top of the page. I'm not the best PHP coder, but I believe it is correctly coded. Here is ...
-3
votes
0answers
21 views
How to post curl in jquery ajax json? [closed]
I need to write this code in JQuery:
curl http://localhost:9292/faye -d 'message={"channel":"/channel/new", "data":"1"}'
1
vote
1answer
13 views
CURLOPT_TRANSFER_ENCODING with Net::Curl::Eazy in perl
I'm using Net::Curl::Easy in perl.
My requirement is to send HTTP Request in zip formate. I tried using http option CURLOPT_TRANSFER_ENCODING [Link]
But perl returns with error:
Bareword ...
0
votes
1answer
41 views
cURL login into ebay.co.uk
I've been trying for some time now to use cURL to login to eBay.co.uk. The cookies are being set and the post data is being sent correctly however I am not sure that the cookie file is being read ...
0
votes
0answers
12 views
jenkins - error while deploying tomcat war - curl: (56) Recv failure
I setup jenkins on one ec2 machine & deploying war file on second ec2 machine. from jenkins when I am sending following command.
...
0
votes
1answer
24 views
How to spoof a search engine bot with curl? [closed]
How do I make a request to a website using cURL and make the website believe that I am a search engine.
0
votes
2answers
17 views
How do I produce an array from a raw XML CURL response?
I have tried following the advice in this thread, but I still seem to be having trouble getting a usable array from a raw XML CURL response (actually I just want a couple of bits of data from the ...
1
vote
1answer
13 views
On Which Port Couchdb Replication will be done
I have two CouchDB databases running on two machines (SystemA and SystemB). Their URLs are
http://SystemA:5984/_utils
http://SystemB:5984/_utils
Replication is done from SystemA to SystemB using ...
0
votes
1answer
27 views
Getting several contents of URL in PHP using CURL, Google CSE
I'm working on my project of using Google CSE. At this step I'm writing codes to retrieve JSON results from it.
Here's the code:
<?php
function cURL($url, $ref, $p) {
$ch = curl_init();
...
0
votes
0answers
19 views
How to test curl with Token Devise
I am trying to implement devise token authentication.
I have followed the following tutorial:
http://matteomelani.wordpress.com/2011/10/17/authentication-for-mobile-devices/
Fairly simple to my ...
0
votes
0answers
10 views
Zend_Soap_Client Accessing HTTPS using Curl for CA Cert issue
Is it possible to set the adapter in Zend_Soap_Client like the Zend_Http_Client
example here: https://gist.github.com/dbaltas/2654079
I get responses from a 3rd party secure web service like below
...
0
votes
1answer
12 views
Generating Tableau Trusted Tickets with curl or Python?
I'm working on a portal site that will use Tableau Trusted Ticket authentication (as described here), but having some trouble generating tickets.
One thing I wanted to verify before continuing ...
0
votes
0answers
20 views
Error when building WWW::Curl module (v4.15) in Strawberry Perl v5.16.3
I'm trying to build / install the WWW::Curl module for strawberry perl.
I had to make some adjustments in Makefile.PL according to instructions in: ...
0
votes
2answers
13 views
How can I proxy a request using PHP/cURL and proxy the response headers too?
I have a browser client that's fetching partial content from my web service, e.g. using Range: bytes=100000-200000. The request comes into a PHP page, fetch.php. In that PHP page, I grab the ...
0
votes
1answer
20 views
stop curl from downloading text files to one line
curl http://www.xdcclan.com/server/msg.txt -o C:\Users\xdc\Desktop\test.txt
Curl automatically deletes the .txt to one line, to counter I saved the test file as a .rtf
but a .rtf file that ...
0
votes
2answers
43 views
PHP script to automate login and form submit
I have an external site which requires me to
a. login
b. post form (with 2-3 dyanamic parameters)
I need a PHP script to automate this behavior. i.e. the script should first login with a ...
0
votes
0answers
9 views
Facebook Ad Campaign Budget Update Fails
We are able to update ad campaign name using Facebook Ads API, but when we are trying to update any budget for the same campaign, we are getting "User request limit reached" error.
What may be the ...
0
votes
3answers
37 views
PHP - Upload an image file to other domain with CURL
I have two domain, as example site1.loc and site2.loc. In site1.loc i have a php form file like this:
<?php
$c_name = "";
$c_phone = "";
if($_SERVER['REQUEST_METHOD']=="POST"){
$c_name = ...
0
votes
3answers
22 views
Log curl redirects using CURLOPT_FOLLOWLOCATION set to true
I have an script that grabs content from third party sites and if the url is not found the site redirects with a 302 header location to a custom not found webpage instead of sending a 404 not found. ...
0
votes
0answers
35 views
PHP: getting error message Call to undefined method soap_call in wordpress
we have a very strange error message I found in the server's error log when I wanted to see why a cron job fails:
PHP Fatal error: Call to undefined method CEmailReader::soap_call() in ...
0
votes
1answer
46 views
PHP CURL webservice via GET returns nothing
I have a simple PHP web service sitting on our server.
I am able to connect to this service without any errors using the following code (I've removed our domain):
$service_url = '*** ADDRESS ...
1
vote
2answers
25 views
How to pass variable into curl
There are other questions about putting the variable into curl command within the url.
I want to have a variable defined at the top of script to swap values like so:
# MODE=-v
MODE='-sS -w ...
0
votes
1answer
13 views
Superagent call to issue Github oath token fails in node.js app
I am trying to write a little CLI utility to auto-generate a ~/.netrc file and store the github oauth token inside.
I am able to get a new token from github when I run curl. This works:
curl -u ...
0
votes
1answer
21 views
Redirect output to a file permission denied?
I want to do a simple redirection. When I do
sudo curl <insert link here> > a.txt
I want to take all of the data outputted by the curl into a.txt. However, I keep getting an error saying
...
0
votes
1answer
43 views
Method of extracting data from a website?
I'm a bit new to web programming these days and I had a couple of questions.
I want to grab data from a website (for example, the names, identification number, and list of resources someone is using) ...
0
votes
1answer
35 views
JSONDecodeError: Expecting value: line 1 column 1 (char 0)
I am getting error Expecting value: line 1 column 1 (char 0) when trying to decode JSON.
The URL I use for the API call works fine in the browser, but gives this error when done through a curl ...
0
votes
1answer
36 views
CURL does not give full html contents
I'm trying to parse a shopping site webpage using CURL in PHP.
the url is: ...
1
vote
1answer
21 views
What's the easiest way to emulate a post request from unix cmdline?
My job has a reservation system that requires me to periodically go to a particular page and do a refresh. When a seat becomes available, I can then reserve on a first come first served basis.
I want ...
0
votes
1answer
31 views
Getting JSON from a URL
I am attempting to get a JSON string and it keeps coming up NULL and I am not sure why. Can someone check to see if I got my code right?
$url = ...
0
votes
1answer
14 views
ruby/bash: How do I download a large file with using the “If-Range” and “Range” headers?
I've been trying to use mechanize to download mp3 files, but the server always returns a 404.
Looking at the headers my browser sends (checked on Chrome and FF), I noticed that the If-Range and Range ...
0
votes
1answer
52 views
Soap request using cURL and PHP
I'm trying to send a SOAP post via Curl in PHP but I always get a couldn't connect to host problem.
But when i trie to use the same URL in a web based client like hurl, a got the correct response :
...
0
votes
1answer
38 views
Dealing with JSON Response in cURL
I'm dealing with JSON Response using cURL, However its just return NULL. I don't understand where i'm doing wrong ?
Here is my code:
<?php
$data = array('name' => 'Hagrid','age' ...
0
votes
1answer
20 views
get content from facebook url using php
How to get content from facebook url and extract facebook user id and access token. I have used CURL and it's returning empty content.
$url = ...

