cURL is a library and command-line tool for transferring data using several protocols such as HTTP, FTP and Telnet.
1
vote
0answers
723 views
cURL login session
I need to use a website as a logged user. The code below does the job well, however it has to log in every time the script is called. I'd like to log in just once and from then on use session cookies.
...
1
vote
0answers
223 views
php curl upload speed very slow
I have issues with the upload speed from curl (php 5.3).
On my development environment (laptop) the upload is very fast.
But when I deploy it on the server, it is very slow.
[EDIT]:
I am using curl ...
1
vote
0answers
394 views
“Login Required” when creating Google Calendar event via PHP cURL?
I've found this question numerous times, but I can't find a single instance of a solution, so I'm trying myself.
I'm creating a simple web application to help my employer schedule events to a Google ...
1
vote
0answers
386 views
php/curl how to add root certificate
For a web application which is able to mount users directories I want to provide a option for the user to upload his root certificate to use curl over ssl.
I tried to set the capath to the upload ...
1
vote
0answers
155 views
XML/API cannot be retrieved by PHP/curl
Yeah, I'm stumped. I'm getting nothing. curl_exec is returning no content. I've tried file_get_contents, but that completely times out. I'm attempting to get an API XML from my Subsonic media server ...
1
vote
0answers
308 views
Curl not saving cookies. Possible reason for this?
This is my curl function. It works on my local windows machine . But on the server it fails to save the cookie file( no errors, just that no cookie file appears, and the program fails.). Permissions ...
1
vote
0answers
68 views
How to know when a token can be used?
Some APIs give a token back with the API call instead of the result, then you make a second API call with that token to get the query result. Right now, I just use Sys.sleep() within a function to ...
1
vote
0answers
233 views
Problems installing Meteor.com with curl
Having problems using curl on a new Mac (OS 10.7.4), with curl 7.25.0 (i386-apple-darwin9.8.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5.
Worked fine on my previous system, but now I am receiving the ...
1
vote
0answers
223 views
inserting data in related table in tastypie
I have used auth_user and another custom model to hold more values
my model is as follows
class ExProfile(models.Model):
user = models.ForeignKey(User, unique=True)
cell_phone = ...
1
vote
0answers
526 views
PHP curl POST to a remote web services call returns curl error 7 from server, but works fine from localhost
I have a php script that issues a curl POST with data call to a remote web services (running on my co-worker's personal computer). It works fine and returns expected result when I run the script from ...
1
vote
0answers
270 views
PHP Curl sometimes gets a 404 error when loading images but it works with file_get_contents() why is that?
Sometimes I get a 404 error when trying to access a webpage via curl but if I use file_get_contents to access the exact same URL it works, any idea why it's like that?
Here is an example:
My curl ...
1
vote
0answers
273 views
Curl : how can i create xml file with url parameters
i having below url.
curl -v -X POST -d "FROM_AGENT=true&LOGIN_ID=test&PASSWORD=passwd" https://accounts.test.com/login
I want to hidden below parameters using the above command.
...
1
vote
0answers
178 views
configuring CA path on Heroku with curb gem
I'm getting a Curl::Err::SSLCaertBadFile when I try to access the SendGrid API using the newslettre gem.
The gem uses the curb gem to wrap libcurl. I found this piece that made me think I needed to ...
1
vote
0answers
462 views
curl returning “failed writing body” only while using scp
I'm trying to implement a few protocols for file transfer using curl.
FTP, SFTP, HTTP work perfectly fine. But in the custom program where I'm using curl,
the file transfer using SCP fails with
...
1
vote
0answers
44 views
Do i need a cert for this php redirect to work as i'm expecting it to?
When I access http://www.google.com/ in my browser I'm redirected to https://www.google.com/. I'm expecting CURLINFO_EFFECTIVE_URL to return me https when running this code:
$ch = ...
1
vote
0answers
317 views
Curl error while unencoding
Hi i am sending a simple get request with Curl, it works perfectly for all sites i have had to use it on except this last one. When i get the response i get a weird unencoding error. This is what i ...
1
vote
0answers
482 views
Ruby - Uploading a file using RestClient post
I have a cURL that I am trying to translate into Ruby.
the cURL is this:
curl -i -k -H "Accept: application/json" -H "Authorization: token" -H "Content-Type: image/jpeg" -H "Content-Length: 44062" ...
1
vote
0answers
203 views
Page curl Transition Between two NSViews
I am developing a catalog sort of app for mac osx. I want to be able to transition between multiple views with a book page curl animation. I would do this with a previous and next button. I know I ...
1
vote
0answers
331 views
PHP: Post ASPX form that uses 'WebForm_DoPostBackWithOptions' with cUrl
I am trying to post an ASPX form which uses SharePoint with PHP.
Posting data works with standard forms, I just can't seem to get this form working. I did notice an onclick attribute on the submit ...
1
vote
0answers
172 views
cURL STDERR is not working
I'm currently writing a PHP class that takes in XML files exported by the firefox plugin tamperdata and lets you replay them in code with as much control as possible. This is basicly a cURL wrapper ...
1
vote
0answers
636 views
Connecting to FTPS using PHP and certificate as auth
I'm having a hard time setting up a connection to a FTPS.
I'm supposed to connect using SSL/TLS and AUTH (explicit standard).
I've got a server address and a port (:60000) and a public key from the ...
1
vote
0answers
380 views
Need help downloading a file using PHP and Curl from an FTP
I'm trying to download a file from an FTP server using Curl. I can paste the URL into my browser and it downloads fine. The problem is that with Curl and PHP, I believe the FTP server is doing a ...
1
vote
0answers
510 views
Work with Twitter upload, update_with_media API and curl
I want to update twitter status with a "photo URL".
Here is my code:
curl_setopt($ci, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ci, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ci, ...
1
vote
0answers
190 views
Data is not get when i call web service
I am using curl for post web service call . In local i get data but when i shifted my code and web service to server i am not getting data.
When i call from rest client which is add on for firefox i ...
1
vote
0answers
493 views
How to fill a form after successful login
I am trying to send sms via way2sms using HttpComponents. So far the login attempt to the site is successful, as the login history of the website clearly shows it and I am able to get the JSESSIONID ...
1
vote
0answers
595 views
Send payload with GET method
To my knowledge, GET is not supposed to have payload data. However, the Assembla API makes use of GET and data
curl -i -X GET -H "Accept: application/xml" -H "Content-type: application/xml" -d ...
1
vote
0answers
1k views
curl (56) Recv failure
While running the command:
curl --head http://www.yourdomain.com/
on my local machine, I get this output:
HTTP/1.1 200 OK
Date: Sat, 31 Mar 2012 09:45:16 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ...
1
vote
0answers
953 views
Send POST request using CURL command and retrieve using PHP
I'm trying to HTTP POST using the following command on linux
curl -X POST --data-ascii "a=hello world" http://www.mysite.com/controller/function_name
Its not working, my server is not accepting the ...
1
vote
0answers
412 views
Curl effect half page in mapView Android
I need to implement half page curl in map view in Android, just like this image.
http://i.stack.imgur.com/uYDG1.jpg
I found some libraries, but this libraries works only with bitmap, and i need use ...
1
vote
0answers
103 views
Transferring Cookies between sites
I want to be able to take the cookie information from website a, and then set the cookie on website b.
So when a user visits website b, website b automatically sets the cookies it receives from ...
1
vote
0answers
266 views
Remote login Amazon (KDP)
I'd like to automate the summaries from KDP (Kindle Desktop Publishing). As they don't seem to have any email notification system (at least none that I'm aware of), I need to login via curl. It drives ...
1
vote
0answers
1k views
Whats wrong with my PHP CURL request?
My group uses basecamp for project management and I am the admin. I am trying to figure out how to use the basecamp REST api so that I can create some custom plugins i can use on internal web pages so ...
1
vote
0answers
122 views
Implications of CURLOPT_FOLLOWLOCATION for Amazon S3
I am using a curl library to upload images to Amazon S3. However, becuse CURLOPT_FOLLOWLOCATION is set to true and open_basedir is enabled, this throws an error:
CURLOPT_FOLLOWLOCATION cannot be ...
1
vote
0answers
480 views
Soundcloud - Problems getting access token - get message invalid_client
I've registered an app on soundcloud.com I'm trying to login with oauth 2 and php using curl I can what seems to login ok but when go to exchange the token for the access code I get the follow error: ...
1
vote
0answers
231 views
PHP CURL POST on a ASP.NET website
I'm trying to login to an ASP.NET website. I have the correct login, and I'm capturing the __VIEWSTATE variable with my initial load of the website form, but there's no __EVENTVALIDATION variable on ...
1
vote
0answers
366 views
Using Furk.net API doesn't keep me logged in
I am using the Furk.net API and I have managed to successfully login using a curl function and submitting the post data to the proper URL (http://api.furk.net/api/login/login). When I echo the ...
1
vote
0answers
668 views
HTTPS login using CURL
i tried to login twitter by using following code.but after running codes,error gives "Erro 111 (net::ERR_TUNNEL_CONNECTION_FAILED):UnkownError".i guess $post fields for twitter is depreciated.i need ...
1
vote
0answers
863 views
How to create a automatic update component in php?
I'm developing a web application in PHP and I need to develop an automatic update component for that software. When I thought about how to develop this, this is what came to my mind:
logic
download ...
1
vote
0answers
194 views
Posting Data to Amazon using curl
when we enter a keyword (search term) in amazon kindle book store, search brings a list of books back.
I am trying to scrap the above said amazon kindle book search, i have some basic/usage idea of ...
1
vote
0answers
459 views
Restful Webservices javax.servlet.ServletException: An error occurred performing resource injection on managed bean itemController
I'm trying out an Jax-RS example that involves EJB+JPA+JSF. i can normally run the example but when i remove the comments below in Stateless EJB bean;
// @Context
// private UriInfo uriInfo;
/* ...
1
vote
0answers
394 views
PHP: Download images from Flickr to local server (via CURL?)
I’ve a Wordpress site where I uses my Flickr feed to get my latest images. By using a script, I create a new post everytime I’ve a new image on Flickr but, the image thumbnail source is from Flickr ...
1
vote
0answers
179 views
Download first n lines/characters using RCurl
I need to use the package RCurl to download the content of various URLs (using authentification, etc.).
To optimize download speed I would like to limit the downloaded response output lines / ...
1
vote
0answers
346 views
Post-receive, request php script, pull git repo
I have a PHP script git.php on my web-server with only a few lines, one of the lines uses shell_exec() to run a
'git pull ssh://user@X.com/repo.git'
(Please note, you cannot push to the webserver, ...
1
vote
0answers
596 views
Magento and salesforce integration to create opportunity as closed won inside salesfore once order become complete in magento store
I had implemented a salesforce integration with magento orders. To achieve this , i had followed the steps given below. I am doing something wrong in 4th step while inserting salesforce_company_id and ...
1
vote
0answers
356 views
getting an xml file with curl
I am getting the following xml file and load it to my database with simplexml with no problems
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,
...
1
vote
0answers
260 views
certificate error while posting to user wall with facebook php sdk
I m using the PHP facebook sdk v3.0.0 to post comments on Facebook user's wall.
Here is the code used:
$args = array(
"message" => $message,
"link" => $link,
...
1
vote
0answers
407 views
Curl 405 error when attempting a website login
I am attempting to use curl to monitor a substitute teacher job posting site. I originally started with wget and have since moved to attempting this with curl. I have done some searching but have not ...
1
vote
0answers
322 views
Invoking a Web Service using Curl Script
How to invoke a Web Service using Curl Script but web service in turn should not return value. Curl Script should only invoke the Web Service?
1
vote
0answers
96 views
handling return code 301 on httpclient
I am using httpclient to make a post call. But the curl spec given uses a
curl --post301 url "some data".
How do I go about doing that with httpclient? Is that even the right approach or should I ...
1
vote
0answers
194 views
rTorrent like download manager in php for HTTP files
What i'm looking for is a download manager, like rTorrent, or transmission-webgui, but for http. (Say like, linux iso downloads). What I have made myself is a very simple script which takes a few URLs ...

