cURL is a library and command-line tool for transferring data using several protocols such as HTTP, FTP and Telnet.

learn more… | top users | synonyms

-2
votes
1answer
28 views

Download a file via CURL with Cookies using php [closed]

I need to POST cookies.txt then download a page to a text file using CURL. This is my FGC example but apparently FGC is bad at cookies so I need CURL. <?php $file = file('source\1.txt'); ...
0
votes
2answers
17 views

Curl not working on mac?

I am trying to install a file using curl on my mac through a shell script. I am running 10.8. here is my code: #!/usr/bin/env sh curl -s https://website.com -o /usr/local/bin/folder echo "success" ...
-1
votes
0answers
40 views

Form to API via Jquery/JS with Json

I am trying to create a form that posts to a webservice' api. It requires an "application/json" header. I have managed to make it work with php but unfortunately the server will not work with php. ...
1
vote
1answer
20 views

PyCurl. 'Can't pickle Curl object' error on Windows x64

import multiprocessing import time import pycurl class Bot(multiprocessing.Process): def __init__(self): multiprocessing.Process.__init__(self) self.c = pycurl.Curl() ...
0
votes
2answers
35 views

Getting IP address of a client who sent a cURL request with JSON raw POST data

I'm dealing with Flight Search API for my clients. I want to restrict some client requests from some IP Address who didn't registered with me. All the IP Addresses of my clients I will save them in a ...
0
votes
2answers
47 views

PHP Curl Not enable

I have compile php and curl on my server. When i run phpinfo() on browser it does not show that curl is enable. When i run from the command line it shows curl is enable. Here is the command: /opt/php ...
-1
votes
1answer
32 views

need to delete new line last of txt using php (Türkçe açıklamalı)

İstanbul 04:22 Bursa00 03:11 Ankara0 02:53 İzmir000 02:34 Kayseri0 02:47 I saved this lines to the txt by using curl but I couldnt delete the line 6. It is not blank. because i can delete ...
3
votes
1answer
23 views

How can I detect URL Not Found Error in php curl?

How can I detect This error using php curl? curl return success even if URL does not exist. Not Found The requested URL /ezlogins/index.php/servers/edit was not found on this server. My code ...
-2
votes
0answers
22 views

CURL AND POST METHOD TO UPDATE RECORD

How to update a record via CURL POST ? Hi guy, I used Curl to create a record for table named tbl_post(title, content, tags). Here is my code : public function CurlPost(){ //set POST variables ...
0
votes
1answer
13 views

Using cURL with wunderground api

Hey I'm having some issues using cURL (I can't use file_get_contents because my web host won't allow it) to access parts of the wunderground weather api. When I use the following code to access info ...
0
votes
2answers
27 views

Upload images to media library based on custom field

I have just migrated from a custom built site. As I was not totally sure what I was doing, I created a custom field called featured_image and put a URL to an image in it for each post. Now. Is there ...
0
votes
1answer
20 views

Google Music API: how to request the next 1000 songs?

I'm trying to figure out how to use Google Music API. I managed to get the auth token as described in http://dpogue.ca/gmusic.html: $ curl -d accountType=GOOGLE -d Email=jondoe@gmail.com ...
-5
votes
0answers
30 views

Object moved to here [closed]

I have code which i am using to pass data to another page .In it i have 5 varaibles which i am passing .Two variables $user and $pass if i assign them value with $_POST it works fine but if assign ...
0
votes
1answer
28 views

Using cURL instead of file_get_contents

My web host does not support file_get_contents for security reasons but does support the use of cURL. Can anyone tell me now I would convert this short code using curl? I've been trying for days with ...
-2
votes
1answer
24 views

Get only code and not complete web using PHP curl in WP? [closed]

I have this simple code: $theBody = wp_remote_retrieve_body( wp_remote_get('http://www.wordpress.org') ); print_r( $theBody ); die(); It is working, but instead of just echoing the source code it ...
0
votes
0answers
16 views

POST call with same headers and same request body gives different response?

I was using a website (mysite1.com) , and 3 screens deep from the login screen is the screen that I want to reach using bash and curl & simulating the exact same request that would have gone ...
1
vote
1answer
25 views

echo in shell script replaces variable with following characters

When using curl and awk to get the content-length for an HTTP request, the resulting variable gets "erased" when used in an echo statement with following characters. Why? #!/bin/sh ...
-3
votes
0answers
24 views

Any Way To Use Same recaptcha challenge and response many times? [closed]

Any Way To Use Same recaptcha challenge and response many times in php ?? If Yes. Please Give me some idea about it.. i read somewhere that its possible.. Thanks in advance.
-4
votes
0answers
21 views

What is wrong with this installer? [closed]

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
11 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
31 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
1answer
20 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
32 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
25 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
2answers
19 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
34 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
41 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
35 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
31 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
1answer
34 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
60 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
34 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
44 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
16 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
24 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
16 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
67 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 ...
-2
votes
2answers
21 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
27 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
23 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
14 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
39 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
20 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
12 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
14 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
28 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
31 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
2answers
58 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
12 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 ...
1
vote
3answers
53 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 = ...

1 2 3 4 5 175