Questions tagged [get-request]

HTTP GET Request is a message within a request/response sequence, according to HTTP specification. May also refer to an HttpRequest GET method in software frameworks and libraries that automates relevant functionality

See also:

414 questions
0
votes
1 answer

Sending strings via ajax to Node.js server running express.js don't work properly

I'm trying to send strings from my site to my Node.js server, but when they are received, for some reasons some characters are lost. // Client: microAjax("/foo?test="+encodeURI("this is ++ a test"), function callback(){}); //…
MaiaVictor
  • 51,090
  • 44
  • 144
  • 286
0
votes
1 answer

Get all headers from URL, when working with port connection

I'm busy with a tracking script to handle connections and read the information from a tracking unit. But the way the manufacturer explained it to me, is that the unit sends the information like a URL and it connects to a TCP port, for example: 7203.…
PHP Noob
  • 413
  • 1
  • 6
  • 19
0
votes
1 answer

Load the r_object of a GET request into a variable

I have searched extensively for this answer. Maybe it's just too simple to be posted. Please forgive me I am missing something really obvious. I am trying to use a piece of data (number value) from a GET request (I think it is the r_object value)…
John
  • 35
  • 4
0
votes
0 answers

Delphi: Log the GET request URLs used in Websites that are updating content via AJAX (TWebbrowser)

Using a TWebBrowser in Delphi, I'm showing a website that uses JSON to update its content. To get the source code of the newly updated content and load it into a Memo, I believe I have to get the URLs of the GET requests. Unfortunately, these are…
0
votes
1 answer

Cannot make a get request from the back end to google's Query Suggestion Service

Why can't I make a get request from the back end to google's Query Suggestion Service using Java? I want to make a get request to this service Google: Query Suggestion Service /suggest Protocol. so that I can get a response which would list…
user1809913
  • 1,785
  • 1
  • 14
  • 25
0
votes
1 answer

GetRequestStream Stopping in Array

I have a list of json strings that I am trying to loop through and post to a WebService. It loops through the first two just fine, then just stops on the 3rd iteration (this happens on line 14). No errors or anything, it just seems to stop. Any…
r584
  • 137
  • 5
  • 15
0
votes
1 answer

Cross Domain GET request, hitting server but not getting response

I am trying to make a cross domain GET request for an inline subscription widget (you type in your email address in a text box, and it will subscribe you to a mailing list without redirecting you to a different page). The URL in the code below is…
araja
  • 1
0
votes
1 answer

turn http post request to http get

I want to setup a proxy or a standalone aplication where a "server A" can do some POST request to this proxy and turn the POST request to a GET request to "server B". Then the GET response must be redirected to "server A" which is waiting a…
0
votes
2 answers

http get request using angularjs

So I am trying to send Get request with angularjs However I am getting this error Error: Argument 'SimpleController' is not a function, got undefined here is my code var module = angular.module('myApp', []); module.config(function ($httpProvider)…
Abdelrahman Shoman
  • 2,882
  • 7
  • 36
  • 61
0
votes
1 answer

Encoded GET request

I am a newbie, but I have not been able to determine if this request is malicious or not. It has always came from a foreign IP address. I have done multiple searches and have not found a way of decoding this. Thanks for your help! GET …
Greg
  • 1
0
votes
0 answers

How to generate GET request to webServiceURL/version/devices/deviceLibraryIdentifier/registrations/passTypeIdentifier?passesUpdatedSince=tag

After creating a pass, I can add it to device, register device by saving data to database. Next, how can I generate GET request to webServiceURL/version/devices/deviceLibraryIdentifier/registrations/passTypeIdentifier?passesUpdatedSince=tag ? I see…
malinchhan
  • 767
  • 2
  • 8
  • 28
0
votes
2 answers

Perl CGI: get request not working unless URL is hard-coded

I'm trying to identify the differences between the two strings during a URL get request (using LWP::Simple). I have a URL, say http://www.example.com?param1=x¶m2=y¶m3=z I make sure any blank inputs are also taken care of, but that is…
Thumper
  • 525
  • 1
  • 6
  • 21
0
votes
1 answer

Generic function to get an URL asynchronously in JavaScript without using third party libraries such as jQuery?

Possible Duplicate: Small Ajax JavaScript library I'm programming a library that needs a function to load URLs asynchronously. I'd need the precise same functionality of $.get, except I don't want to have jQuery as a dependency of my library for…
MaiaVictor
  • 51,090
  • 44
  • 144
  • 286
0
votes
2 answers

using $_GET in PHP with https

I am trying to pass a variable to another page on a https:// connection without much success. Below is the query https://mydomain.prefix/secure/myfile.php?claim_id=12345678 I then try and retrieve it…
Sideshow
  • 1,321
  • 6
  • 28
  • 50
0
votes
1 answer

get request to a website returns error

I was trying to send a get request to a website but always return error 400 bad request. I'm wondering if my get request is wrong or not. Here it is; socketOut.println("GET " + req.url + " HTTP/1.1\r\n"); socketOut.flush(); I can do it by using…
Ahmet Tanakol
  • 849
  • 2
  • 20
  • 40