Tagged Questions
0
votes
1answer
15 views
cURL emulating by HTTPClient Apache
I'm trying to upload data to CrowdFlower using their api, for which I'm writing JAVA wrapper. I'm using HttpClient Apache.
the cURL example CrowdFlower give is following: curl -T 'sampledata.xlsx' -H ...
0
votes
0answers
9 views
Curl error: Recv failure: Connection was reset
Note : FYI, my file is large(near about 100MB).
While trying to download ftp file using curl in PHP i got the following error
Curl error: Recv failure: Connection was reset
Here is my code that i ...
0
votes
1answer
20 views
curl bad request unless direct function call
I am getting a 400 Bad Request response header when I use bash to fetch a web page but only when I call my function inside another function?
get_download_page() {
[ $# -eq 1 ] || die ...
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 ...
0
votes
0answers
15 views
Getting Image From URL , Using curl in Cocos2dx C++
I am using curl in C++ to get an Image from a URL for a Cocos2dx Game.
The Code is Working Fine. And using CCImage And cocos2d::CCTexture2D I create a Sprite and Add it on my Layer.
The Sprite is ...
-2
votes
0answers
16 views
convert curl POST call into java urlconnection in twilio [closed]
I am trying to curl post command to java using urlconnection(HttpURLConnection) but it doesn't work. so please tell how to solve the problem.
I have curl command is:
curl -X POST ...
1
vote
1answer
26 views
Why CURL return and error (23) Failed writing body?
It works ok as a single tool:
curl "someURL"
curl -o - "someURL"
but it doesn't work in a pipeline:
curl "someURL" | tr -d '\n'
curl -o - "someURL" | tr -d '\n'
it returns:
(23) Failed writing ...
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 ...
0
votes
1answer
34 views
Error in Cypher curl REST with multiple start points
I am getting the following error when i am trying to pass a cypher query via REST using curl command. My problem is something silly specific to curl command, which i am not able to figure out.
On ...
-6
votes
0answers
37 views
Script to Grab a Links from a site [closed]
I am interested in the download link of a website.
Each page of the site contains 6 posts and each post contains a download link.There are around
900 pages , so aroung 5500 links to capture.
Page ...
1
vote
1answer
28 views
curl NSS -12286 error in TLS handshake
I am getting NSS -12286 error while trying to load the https page using the ca certificate using cacertinpem.c curl c code.
i am using cacert.pem file in the code alog with path. but same thing is ...
-3
votes
0answers
24 views
What is the java equivalent code for the given curl command with -T? [closed]
Please can any one let me know the java code for the given below curl command?
curl -i -k -T test.txt .....
Basically I try to upload a file and here this command has -T without any PUT or POST ...
0
votes
1answer
25 views
The provided value is not a valid RFC-2822 date
I have been testing BigCommerce API calls,
Firstly i tried orders.json call, and i did got proper reply.
But when i added date range parameters ie min_date_created and max_date_created, it gave me ...
0
votes
0answers
19 views
How to download MP4 file that plays through a video player using the curl command
the following page automatically plays an MP4 that I want to download on a video player: `
http://www.stylelife.com/phase2xl/media/videoplay.php?content_filename=136433981.mp4
However, when I ...
-1
votes
1answer
17 views
Trying to extract MRTG info from a webpage using curl and sed
I am trying to extract some info from an MRTG page to track, namely the 5-minute Max, Avg and Cur values under class 'in" for the 5 minute graph.
So far, I have come up with
curl -s ...
0
votes
0answers
32 views
C Program works when run+built, but the .exe created will NOT run (library issue for sure)
I'm using cURL and Code::Blocks.
The libcurl.a and libcurldll.a are put in Code::Block's generic folder (\CodeBlocks\MinGW\lib). cURL is included with #include .
I've tried linking either libcurl.a, ...
0
votes
0answers
15 views
cURL (or similar) to submit data to a flash site
Ive got a little project which im using a couple of api's to gather and submit data from websites, in the absence of an api im using cURL to do the tasks.
But two sites im using are flash, one of ...
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
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()
...
-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
2answers
28 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
25 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
...
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
...
-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
1answer
27 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
38 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:
...
0
votes
1answer
45 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 ...
-3
votes
0answers
31 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"}'
I try:
function broadcast(){
var message = { "channel": ...
1
vote
1answer
19 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 ...
-2
votes
2answers
22 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
15 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
0answers
21 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
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
30 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
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
2answers
30 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
17 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
22 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
44 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
54 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 ...
1
vote
1answer
24 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
18 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
29 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 = ...
0
votes
0answers
16 views
Curl Auth at http://auctions.yahoo.co.jp/
I have a problem. On the local computer authentication works, and on the VPS hosting wants and asks captcha.
Cookie file is being written.
If you upload a local cookie to the server, then you are ...
2
votes
2answers
63 views
REST API Design sending JSON data and a file to the api in same request
I am creating a REST API on top of an existing application. One of the features takes in a json data along with a file uploaded by the user.
I am unsure how to send a file AND json data in the same ...
0
votes
1answer
41 views
“Failed writing body” CURLOPT_WRITEDATA
The below code is to get response from a server using wsdl, here the problem is curl returns response but am unable to print it.
Error:
Failed writing body
Failed writing data
...