cURL is a library and command-line tool for transferring data using several protocols such as HTTP, FTP and Telnet.
1
vote
1answer
43 views
PHP cURL Header request returning 400 on some servers
I'm trying to test server response from a few client websites using cURL to retrieve only the header, wrapped in a microtime call to calculate full execution time (for server roundtrip), and the HTTP ...
0
votes
1answer
51 views
IMGUR API - Permission Denied
I am using the IMGUR API and I get the following error
Warning: file_get_contents(https://api.imgur.com/3/album/f0J59/images): failed to open stream: HTTP request failed! HTTP/1.1 403 Permission ...
0
votes
0answers
30 views
Plagiarism Tool Uniqueness Detection
I am building a plagiarsm checking tool for my company but have problems on calculating the uniqueness factor.
Calculation works by searching the snippet into Google using GSERP. The script then ...
-1
votes
1answer
43 views
CURL Not working
I tried to use curl on http://wapka.mobi but it is returning a blank page. It was accessible till yesterday night. Now i'm not. This site is easily accessible in my web browser. Please note that the ...
-1
votes
1answer
26 views
Using PHP, how to login to site with cURL
I am trying to work towards posting to a webform using PHP's cURL. So far the best I'm able to do is to pull up the login screen, but after that I am not sure what to do. I know of course that I need ...
-1
votes
1answer
21 views
load page with curl(windows) bat
I downloaded curl for windows and i need a bat file which will load an url every 2 minutes. Any ...
0
votes
1answer
57 views
Uploading files using PHP
I have set up an HTML form to select a file and submit it to a PHP script which will upload it. I cannot use move_uploaded_files() because Box's API requires that I add a HTTP Header for ...
0
votes
1answer
29 views
How to provide Youtube authentication token in PHP cURL
Following this guide, I'm trying to retrieve a Youtube user's subscriptions. I am able to get the user's authentication token, however I don't know HOW to actually send it with my cURL request. The ...
0
votes
1answer
23 views
using curl commands after launching server with node.js
How do you run curl commands after launching a node.js application from the terminal?
I'm following some example from the book Node.js in Action and it has you launch the server and then POST some ...
0
votes
0answers
21 views
REST with authentication in Classic ASP
I am currently "porting" a php script into ASP Classic. The php script directs a parameter in the URL into a cURL request to a REST api, and returns a JSON or XML response.
the PHP cURL is as ...
1
vote
1answer
16 views
Curl (7) error while import feeds data from audible
I am not sure what do here:
I have a drupal site and am importing data from audible.com via feeds importer. Set everything up a couple of weeks ago, info has imported without issue for the past two ...
2
votes
1answer
24 views
jibberish returned when using CURLOPT_URL
Im trying to grab a pages data using CURLOPT_URL, to do so ive used the below code, which is working fine for other pages (with the exception of where the page uses relative paths to its css / js in ...
0
votes
0answers
24 views
Process each line separately to stop timeout in PHP cURL script
I am getting a timeout in my checker script. Is there a way I can get it to stop timing out?
Also I would like it to post each echo line by line instead of waiting for script to end.
Here is my code:
...
1
vote
4answers
21 views
Set PHP session via cURL - will it set the session for the client or the server?
I have a website that uses PHP sessions to manage logged in users. Another company has asked for their users to sign in to their site and then when they come to my site, the user will automatically ...
1
vote
3answers
31 views
cURL HTTPS follow redirection
I had the below code working to get a HTTP url follow the redirect and then pass back the new page url it was on.
// Follow URL
private function follow_url($url) {
$options = array(
...
0
votes
3answers
44 views
Downloading large files with cURL?
I'm fairly new to cURL and searched for a good script to download remote files to my server using cURL. What I found was this:
<?php
$url = 'http://www.example.com/a-large-file.zip';
...
0
votes
1answer
26 views
Track google instant search result for occupation of people using php
Please check the image, i need to track the occupation of some famous people. I think this instant result from google will be good choice.
This result is populated dynamically from javascript, i ...
0
votes
1answer
30 views
PHP cURL “CURLOPT_USERPWD” or best way to protect the API?
In php cURL usage, what actually is CURLOPT_USERPWD working? I can see in many examples, like:
curl_setopt($ch,CURLOPT_USERPWD,"my_username:my_password");
.. but how to do at the Server Side? What ...
0
votes
0answers
26 views
How to download video form server and upload another server
I want to download video ( like wav, mp4, mp3) from the server and upload another server using php. is it possible using php ?
I am trying with CURL, but it's not working..
If any body can have any ...
-2
votes
1answer
37 views
undefined reference to curl_global_init, curl_easy_init and other function(C)
I am trying to use Curl in C.
I visited Curl official page, and copied sample source code.
below is the link:
http://curl.haxx.se/libcurl/c/sepheaders.html
when I run this code with command "gcc ...
0
votes
1answer
37 views
Can't get Youtube access token with curl (PHP)
I'm following this guide to make a server side Youtube web app in PHP. I can't get past step 4. Everything up to that is good, it redirects to my script and I can obtain the authorization code no ...
0
votes
0answers
20 views
what is Review object in facebook graph API & how do I post it
I have implemented some of the facebook features using curl and facebook graph APIs as mentioned in the developer website. I am able to post and upload photos.
During the course of adding other ...
0
votes
0answers
10 views
Security Settings to use curl with AWS
I am trying to connect to amazon cloud servers together. The one is running a rest service that the other needs to connect too. I have everything working fine in my shell script except that when i try ...
4
votes
3answers
42 views
Edit json response from curl response
<?php
$json_url = "http://openexchangerates.org/api/latest.json?app_id=xxxxx&callback=angular.callbacks._0";
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $json_url);
curl_setopt($curl, ...
2
votes
2answers
58 views
Translating cURL command to PHP
I'm trying to translate the following cURL command to PHP.
curl -k https://api.box.com/2.0/files/content -H "Authorization: Bearer 8tuuIMsrf3ShyODVdw" -F filename=@txt.txt -F folder_id=0
Here is my ...
0
votes
1answer
23 views
Upload a file into a ftp server using buffered output with Curl
I want to upload a database backup file into an external ftp server using curl. I use postgres and pg_dump streams the content of file into buffered output.
I tried
echo pg_dump dbname| gzip" | curl ...
-1
votes
0answers
43 views
send soap message to webservice using curl with attachment
I am required to call a webservice and wait for results using UNIX BASH.
I figured I could use CURL.
The problem is that i need to send to the webservice a zip file as an attachment.
Has anyone ever ...
0
votes
2answers
35 views
R - devtools Github install fails
Trying to use Hadleys devtools package I am getting a certification error:
install_github("devtools")
Installing github repo(s) devtools/master from hadley
Installing devtools.zip from ...
2
votes
1answer
56 views
remote login to Amazon using curl / php
I've made myself a test project to log in to Amazon using cURL and PHP, but after hours of going in circles, I think I have to admit defeat. I was wondering if anyone could tell me were I've gone ...
0
votes
0answers
20 views
CURL keeping session with get and post
I have logged in to a website with post and it's OK. When I get this site with GET method everything is ok (returend "Hello, username !" etc) but when I'am trying to send post to this site it's ...
0
votes
1answer
25 views
PHP: curl and stream forwarding
Curl has lots of options that make it easier for my use-case to request data from another server. My script is similar to a proxy and so far it is requesting the data from another server and once the ...
0
votes
0answers
18 views
File upload from one server (Internet) to another Server (Intranet)
I am trying to upload a file from Internet site, which obviously need to be uploaded in Intranet site. Tried below code.
index.php file in Internet Site
<?php
echo "<pre>";
...
-2
votes
1answer
36 views
Selecting a popup window using cURL [closed]
I am creating a php script for deleting message from a site using cURL.
At first we have to select a Select all Check box and then click the Delete all option. After that a popup window will open ...
2
votes
0answers
65 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 ...
1
vote
2answers
35 views
cURL web services from iphone
I need to fetch data from curl web services from iOS, the client provided me a header name, header value and a base url, I dont know what to do with them, the url isn't giving me anything opening in a ...
0
votes
3answers
62 views
PHP Best way to pass big Arrays or Objects between different Sites/Servers?
I have 2 websites (2 different domains/servers) and i need to transfer data between them. Source Server will be having an Array/ Array Object. Then it needs to be delivered to another site. I do not ...
-4
votes
0answers
31 views
which separator to use in this code and how to format it [closed]
i working on getting the source of remote page and echo only specific line nunmbers my code below works well
In the code below i echo the line no 58 :
$html = get_data($newurl);
$html = ...
0
votes
1answer
24 views
PHP, CURL. What does curl_exec return?
I'm trying to set an API with a payment processor. Below is the code they provided me. There are some information in the $result variable that I want, what I don't understand is what type of variable ...
-2
votes
0answers
21 views
how to display non of the lines that contain specific word in php [closed]
I use this code to get remote page source :
<?php
//Get the url
$url = "http://remotesite/static/section36.html";
$html = file_get_contents($url);
echo $html;
?>
this will ...
0
votes
2answers
26 views
Solr on Tomcat not able to post xml files without error field unknown
I just installed Solr on Ubuntu with the following tutorial:
http://feinan.com/2012/05/19/how-to-install-solr-3-6-0-on-ubuntu-12-04-lts/
which got me up and running fine.
But when I want to post a ...
0
votes
0answers
24 views
cURL SSL version 2 vs version 3
I have written a PHP script to transfer large files (100MB+) to another server using cURL. The process wasn't working until I set the CURLOPT_SSLVERSION to 3. Without setting that option, the process ...
0
votes
1answer
36 views
Flask - Getting request parameters in Google App Engine?
I'm running Flask on App Engine and I'm having trouble getting the request parameters of an issued request.
Here's my function being called:
@APP.route('/some_model/new', methods = ['PUT'])
def ...
0
votes
0answers
37 views
cURL post data to click a button
I am looking to use cURL to post some data to click a button a webpage that I need to update regularly.
I tried to do the following cURL command but it doesn't seem to click the button:
curl -X POST ...
0
votes
3answers
46 views
Using Curl to get remote page source how to echo only one line of the code based on its number
I am working n getting the source code of remote page the url of that remote page it got dynamically from the url the user click according to the arrays array('event_id', 'tv_id', 'tid', 'channel') : ...
-1
votes
0answers
24 views
cURL failing to authenticate
I'm transferring a website across to a new server, however I've found that any calls to the API we're using are failing? I can get calls to work by using the Firefox RESTclient but not on the new ...
-2
votes
1answer
38 views
prevent some parts of html from showing in code retrieved from remote page using curl
I am retreiving source code from remote page using curl then echo it in my page using echo $html but this echo the whole remote page . what i am tring to do is to prebvent some parts
from being ...
2
votes
2answers
70 views
cUrl logging into twitter
I'm trying to login into twitter with php + curl, but I think there's something wrong with my request because I get this as response:
Something is technically wrong.
Thanks for ...
0
votes
1answer
48 views
cant change url , change url in php
I have a site developed by developer.. i dont know php or html,
I am new to this subject plz help me if any on can
I want to change url of my site
current url is like
abcd.in/index.php?page=9
I want ...
0
votes
1answer
38 views
Unable make SimpleTest GET and POST in test case, using Drupal6 and SimpleTest
After a while i ran this sample test, the Drupal batch screen (the one with the progress bar) stops running, no errors are logged in my server logs, and the whole browser window stay freezed. Code is ...
-1
votes
2answers
41 views
Display selected parts of HTML source of remote page retrieved by curl
I am working on getting the source code of remote page using curl file_get_contents but the
problem is this page have many iframes and ads and i want to get only small part of this page
the page ...






