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
0 answers

Get request for Millennial Media Advertisement in my Blackberry app

I am trying to make a blackberry get request for advertisement from millennial media, I would love some help I cant seems to get it to work. This is what I have: String url…
0
votes
1 answer

Download images to UICollectionView via AFNetworking

I'm new in iOS programming. So I've newbie question. I'm getting started with AFNetworking 2 and that is the task: I've a request. Its response is the part of the second request. It means that I have to wait untill first request ends. They follow…
Asd Asdf
  • 21
  • 6
0
votes
2 answers

How to set user name and password in a HTTP get request?

I have use requests library from Python to send a get request: response = requests.get(url, verify, auth, params, headers) My assumption was that one can send any get-request directly from a browser. For example, in the address line of a browser I…
Roman
  • 124,451
  • 167
  • 349
  • 456
0
votes
0 answers

didFailWithError: Error Domain=kCFErrorDomainCFNetwork Code=303 "The operation couldn’t be completed when GET request

I got following error when I call my web service. didFailWithError: Error Domain=kCFErrorDomainCFNetwork Code=303 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 303.)" UserInfo=0x16e505b0 …
Mihir Oza
  • 2,768
  • 3
  • 35
  • 61
0
votes
0 answers

Use Javascript to get url and redirected url requests

I want to use javascript to get all the urls I travel to in a browser. For example, if I go to a url, I want to get that url, the page it redirects me to, and any intermediary redirects. Is there a get request I can use in javascript that can grab…
user3421410
  • 337
  • 1
  • 3
  • 10
0
votes
1 answer

php http facebook api GET notation

I don't understand this notation for GET requests in Facebook's documentation (found here): GET /oauth/access_token? client_id={app-id} &client_secret={app-secret} &grant_type=client_credentials What does this mean in apache terms and…
sterfry68
  • 1,063
  • 2
  • 14
  • 30
0
votes
0 answers

ruby on rails how to render multiple non public images

I am developing a rails 4 image sharing app like fb and I want to protect user images so I uploaded the images to private folder and able to to display images with send_file but it is displaying one image and also it querying the database multiple…
Anant
  • 1
  • 1
0
votes
0 answers

Is it better to send query string or serialize data when sending a GET request?

I am using an ADO.NET app to frequently send data to a web server. And there are thousands of machines doing this so it will become heavy on the server. I have a bunch of stuff I would like to send. Lets call them v1, v2, ... , v10 which are very…
0
votes
2 answers

Undefined HTTP GET Request Interpreted by Node.js Server

I am having an issue with my Node.js application where I am sending an http get request through an ajax call client-side, I am then receiving the request server-side, and trying to use the data sent through the get request. My issue is that the…
Lethal Left Eye
  • 368
  • 2
  • 9
  • 17
0
votes
1 answer

Semantics3 API, how to make a get request?

I registered for the semantics3 API so that I could use their UPC/EAN Product Search feature and I received my APIkey and APIsecret. Now, I want to make a propper Get request to test it and then eventually incorporate it in my own application. I…
Emir
  • 13
  • 9
0
votes
3 answers

when programming for android, how to set get request parameters in JSON?

I am sending a get request with one parameter in JSONwhich is set into request body, but don't know how. Are there any particular methods for this?
elfar
  • 461
  • 2
  • 6
  • 21
0
votes
2 answers

why url is not constructed as expected in GET request?

I have below form in html page
Username:
i enter the value "test" in text box and submit it. I expect…
emilly
  • 10,060
  • 33
  • 97
  • 172
0
votes
1 answer

Does this HttpWebRequest/HttpWebResponse/StreamReader code even make sense?

Rather than add on to my question here, I'm adding a new one as, once I looked at my code with my X-Ray vision goggles attached, I don't grok it. I don't even remember where I got this code, but it's an adaptation of an example I found somewhere.…
0
votes
3 answers

Jquery ajax get method with parameter is not working in asp.net

I want to call a web method using jquery ajax get method.but it is not getting called. below my javascript and code javascript: function RetrievePassword() { var forgotEmail = $("#txtForgotEmail").val().trim(); //call the ajax method to…
sandeep.mishra
  • 825
  • 4
  • 19
  • 40