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
24 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 ...
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
17 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 ...
1
vote
1answer
48 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
27 views

translate curl to .net web request

Here is a curl command from documentation: curl -g "http://ip.ip.ip.ip/test/xyz.jpg?attributes=size" Can i just translate it to HttpReqeust like this? UriBuilder builder = new UriBuilder("http", ...
0
votes
2answers
46 views

how to transfer the curl command to http post request

I am using facebook object api to upload images to facebook staging service. api document is here http://developers.facebook.com/docs/opengraph/using-object-api/ in the doucement, it uses curl to ...
0
votes
2answers
29 views

Creating an index with REST API

I'm trying to create an index within a set under a specific namespace, but am unsure how to do it. My resources have this as an HTTP example: POST /example/v1/index/{namespace}/{set}/{indexName} ...
0
votes
0answers
75 views

CURL - This request requires HTTP authentication

I have the following code: $curl = curl_init($query); curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password); curl_setopt($curl, ...
0
votes
0answers
27 views

Recursively try all urls alphabetically and download files

Is there a way to recursively and alphabetically test all possible urls inside a folder and recursively download all the files to a local machine? I am aware of curl and wget, but I'm not sure if ...
1
vote
3answers
83 views

How can I diagnose the difference between a PHP curl POST and a C# WebClient POST?

I have PHP code such as the following: $url = "http://my.parkpay.co.za/includes/api.php"; # URL to WHMCS API file goes here $postfields["username"] = $username; $postfields["password"] = ...
0
votes
0answers
63 views

Get direct download link instead of downloading the file, with cURL

I'm using cURL and I find myself in this situation: the site I'm scanning with regex apparently start downloading immediately after a very specific post request (which just elaborate with cURL), the ...
0
votes
1answer
28 views

How can I download a single file from multiple locations via HTTP?

I need to download a big file quickly, but all sources I can find have throttled bandwidth. Each of them seem to support HTTP 1.1 Byte Serving (Range Requests), since I can pause and resume the ...
0
votes
2answers
119 views

Getting request Authorization header in ZF2 controller

I am using ZF2 and for some reason, I can get all the headers I send EXCEPT the Authorization header - it's like its filtered out. I am trying to get all the headers in the controller like this: ...
0
votes
2answers
62 views

cURL giving 400 in response [duplicate]

Hello to anyone willing to help.. I don't know what else to do. I am trying to send an xml request to an api which will give back an xml formatted response. I am using curl to achieve it. But no ...
2
votes
2answers
60 views

Use HTTP-AUTH to redirect?

Is there a way to have PHP redirect to a new page, and pass along HTTP-AUTH? I have been using cURL, as the second example here: Sending basic authentication information via form Unfortunately, when ...
1
vote
1answer
32 views

Unable to get whole http message

I am using curl for sending a POST HTTP message to my server. At Server side I am opening a socket and reading the data by using following code recv(socket_Fd, (void *)ucBuffer, ...
-1
votes
1answer
68 views

How google knows about me? [closed]

I've used curl to request www.google.com this way: curl -v --url "http://www.google.com" I found the result is HTTP/1.1 302 Moved Temporarily to Location: http://www.google.com.eg/. Although when ...
0
votes
1answer
202 views

Using curl with NTLM auth to make a post is failing

I can't seem to wrap my head around this. I'm trying to script automating an upload of a csv but the curl is failing with a 401. curl -v --ntlm -u username --upload-file ~/galaxy/forums/pt_update.csv ...
1
vote
3answers
94 views

putting CURL result in a string and not STDOUT?

I have the following curl code, which make a request to website and retrieve data from it, it works well, but I want to store my data in a string and not in the output window. Any idea? #include ...
0
votes
0answers
35 views

curl error handling in non-html transfer

I'm using http as a general-purpose transport protocol with no browser or HTML involvement; a file gets uploaded to a server from a command-line client tool, processed, and the output file is ...
0
votes
1answer
145 views

Receiving response from CURL in JAVA

I am using a public API provided by Sentiment-140 for finding whether a small text is positive, negative or neutral. Though I can successfully use their simple HTTP-JSON service, I'm failing with ...
1
vote
1answer
92 views

PHP cURL get file with only a partial filename

I'm pretty new to the cURL library so I hope the solution to this isn't too trivial. Basically I have a remote directory, lets say http://www.something.com/dir. In this directory following files are ...
3
votes
1answer
183 views

Unable to get negotiate authentication to work in a libcurl program

I am currently using libcurl(version 7.19.6 built with SPNEGO and GSS-Negotiate support) to write a client(C++/C) which connects to a protected webpage(Kerberos protected) behind a Tomcat Server. ...
0
votes
2answers
295 views

BASH CURL: Don't close connection in between requests when run sequentially

I am trying to write a BASH command that uses CURL to send a GET request to two different web pages but uses the same connection. For me, it is like sending a GET request to a login page to ...
0
votes
1answer
115 views

How do I find the correct url to send curl POST request to?

I am trying to use curl to send a POST request with json. I use Live HTTP Headers and get the url to send the request to. However it comes back "request denied. you do not have permission to access ...
0
votes
0answers
119 views

GSS-negotiate curl based client , delegation how to?

I wish to enable kerberos credential delegation in a c++ client which connects to Tomcat servlet(intermediate server) using non browser http connection based on curl and then to a java server(final ...
0
votes
1answer
293 views

RestTemplate usage

I'm trying to use RestTemplate in order to make a PUT. For some reason I can't reproduce the PUT I created using curl that goes through without any problems. Here is my curl call that succeeds and ...
0
votes
3answers
508 views

PHP | Get private IP address from a client user?

I know question but didn't find real answer on stackoverflow. This is not X_FORWARDED_FOR or SERVER_NAME or SERVER_REMOTE_ADDR, I want get local IP address of remote client connected to my server to ...
0
votes
1answer
215 views

How to login using Reddit's API?

Am trying to access my Reddit user's account by using the Reddit API - POST login Endpoint listed on its API page. I tried this: curl -i -X POST -d '{"user":"myusername", "passwd":"mypassword", ...
3
votes
2answers
79 views

When does a web server clear the PHP session identifier?

Background: I am trying to write a script that connects on a regular basis to a web server and checks if some information on a specific page was changed. I already got this working using a ...
2
votes
1answer
83 views

How can I download an image over HTTP with unicode letters in URL?

How can I download the following URL (image) using PHP: http://www.delo.si/assets/media/picture/20121228/POLITIČNI05 tomi lombar.jpg?rev=2? The problem is that PHP somehow doesn't support unicode ...
0
votes
0answers
105 views

node js curl vs http.request

I need send a http request to another server. I can do this in two ways: 1) using http.request() 2) using child_process.exec // ... define timeout, data, url var __exec = ...
0
votes
1answer
56 views

PHP Equivalent of CURL command

What's the PHP equivalent of the following CURL command? curl -X POST -d "html=<html><body><h1 style="color: red;">Hello World!</h1>" http://example.com/post"
2
votes
0answers
179 views

Make two linear cURL requests over TOR with same IP

Before response my question - be awared that's not related to the following subjects: cURL: two seperate requests, same session select outgoing ip for curl request PHP Multiple Curl Requests I'm ...
0
votes
0answers
57 views

How to see live POST data like Http Fox from URL with PHP

I have url1 domain.com/abc when i run this url1, it auto send Post Data to domain.com/plugin.php Use http fox for FireFox, i see Post Data (url, agent) but I don't know how to write them with php. ...
1
vote
0answers
21 views

Input decompression support in lighttpd

I am trying to send an http PUT request to my lighttpd server with a COMPRESSED file abc.xml.gz in its body. using curl command by using the --compressed option in curl and -H "Content-Encoding: ...
0
votes
1answer
57 views

What Content-Length to put when preforming GET request?

I know that when preforming POST Curl u set the content length using strlen($postdata) However, when doing GET how can I determine the content length? This is my code : curl_setopt($CR, ...
0
votes
1answer
144 views

HTTP Post to Ebay Trading API using Curl

I am attempting to do a HTTP POST to retrieve order data from Ebays Trading API. I am somewhat new to this - as you may see. I first used their API Test Tool and was successful getting my actual ...
0
votes
0answers
53 views

Persisting a logged in state across node.js http requests

I've created a http request to log into another site which works fine var http = require('http'); var options = { host: 'http://www.thesite.com', port: 80, path: '/login', ...
1
vote
0answers
182 views

post file using ruby curl easy.http_put (data)

I have a task to send a file using HTTP PUT in ruby. In Command prompt i am able to get success response using the following command. curl -X PUT -vN https://myexample.com/blah/myaccount ...
0
votes
1answer
178 views

How to change http headers for put per data point with cURL in php

Currently I'm trying to upload files via a REST API that accepts PUT. I need to provide two things: xml/json data to describe the target field, and raw data. The documentation for this operation can ...
0
votes
2answers
126 views

String Data PHP Curl HTTP Post [closed]

send string data is correct so send? I'm not able to send the request. $header = str_pad("cccc", 4," ", STR_PAD_RIGHT); $header .= str_pad("bbbb", 6," ", STR_PAD_RIGHT); $url ...
0
votes
0answers
30 views

POST request and get results PHP [duplicate]

Possible Duplicate: How do I submit POST data using PHP and cURL? I'm new to this and I need some help, if possible. I have this HTTP post request: POST ...
-1
votes
1answer
138 views

How does a cookie work

I'm trying to send a post request through curl so I ran curl --cookie /tmp/cookies.txt --cookie-jar /tmp/cookies.txt --data "name=value" http://www.mysite.com > post_request.txt where I stored ...
2
votes
1answer
103 views

Why is apache accepting this invalid range request?

I'm trying to debug a ranged request issue in my app, so I've been using curl to see the headers. If I do curl -v -H "Range: bytes=200-100" THEURL the server responds with: < HTTP/1.1 206 Partial ...
4
votes
4answers
425 views

Send HTTP request from PHP without waiting for response?

I want to have an HTTP GET request sent from PHP. Example: http://tracker.example.com?product_number=5230&price=123.52 The idea is to do server-side web-analytics: Instead of sending tracking ...
7
votes
3answers
193 views

Can curl be used to mimic a persistent (but idle) open connection

I am having trouble with some Http Client connections returning NoHttpResponseException about 1 in 3 times. My hypothesis is that the firewall is closing idle connections (not unusual). I would like ...
1
vote
1answer
95 views

How can I use query string (--data-urlencode) in an NSMutableURLRequest?

I want to translate the following GET request to an instance of NSMutableURLRequest: curl -X GET \  -H "X-Parse-Application-Id: sdasfasdf" \  -H "X-Parse-REST-API-Key: asdfasdfasdfasd" \  -G \  ...
0
votes
1answer
53 views

HTTP Header specifications

I am trying to send/receive requests using PHP's fsockopen(). I just wanted to ask what are the required headers for different types of HTTP methods? these are Google's response header HTTP/1.0 200 ...

1 2 3 4 5 7