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

Docker exposing ports site can't be reached

I have exposed the required ports in my dockerfiles as well mapped them in my docker-compose.yml. If i create containers without a docker-compose.yml i can access everything, but if i use docker-compose.yml file i cannot access 2 out of 3 images via…
TheDoctor
  • 2,362
  • 4
  • 22
  • 39
0
votes
1 answer

Retrofit 2: error in my GET request

I'm developing an Android app that shows movie posters for top rated movies. I want to build this by using Retrofit 2. However, I keep getting the error 'Service methods cannot return void'. Here's the stack trace: FATAL EXCEPTION: main Process:…
Helenesh
  • 3,999
  • 2
  • 21
  • 36
0
votes
0 answers

PhpStorm GET request to built in server does not work

I am busy reading: PHP Web Services, 2nd edition And I am on chapter 2 whereby I am trying to make a GET request to a PHP file that is a simple search form, the GET request code is as follows and uses PHP's stream handling with contexts to perform…
liamjnorman
  • 784
  • 1
  • 16
  • 30
0
votes
1 answer

Using text in Textbox before sending WebRequest

I'm trying to create an simple website to get info from another website with username and password. This is my first time programming but I couldn't find an solution to my problem. I'm trying to have an textbox on my website with a button so when…
DJ_TecRoot
  • 93
  • 8
0
votes
1 answer

emberJS JSONAPI adapter sends OPTION instead of GET request

I am trying to make basic request to a working server (checked through google POSTMAN) in an emberJS application. But when I try it, I get http 404 error. Then I inspected the error, and saw that the original request which comes from client side…
xpg94
  • 495
  • 1
  • 10
  • 26
0
votes
1 answer

HTTP/1.1 405 Method Not Allowed in Jmeter Ajax type Login in .net

Unable to perform Load test , for Ajax type Login form, It through error Response headers: HTTP/1.1 405 Method Not Allowed Allow: GET, HEAD, OPTIONS, TRACE for "Post" type form , and while using "Get" type request it gives error like…
Tarit Ray
  • 944
  • 12
  • 24
0
votes
1 answer

How to make a get request to toggl API using java?

Hi I'm trying to use the toggl API to get reports as csv files. However I cannot seem to figure out how to make the get request right using all the parameters. I found a great Python script for it…
oddpodm
  • 157
  • 2
  • 6
0
votes
0 answers

GAE Python Make a GET request via submit button

There is an API that requires the following request header: Accept: application/json And on the website, it says it uses REST protocol and GET HTTP method. I'm currently using Google App Engine (with Python) and trying to make a simple form where…
funct7
  • 3,407
  • 2
  • 27
  • 33
0
votes
1 answer

What do unrecognized GET requests mean?

It's a new Amazon EC2 instance, it's live maybe a couple of hours a day, I've just installed NodeJS and still playing with it. And then I get this in my Putty SSH window: I don't know what those two last requests mean. I don't have robots.txt and I…
Vegan Sv
  • 335
  • 2
  • 4
  • 17
0
votes
1 answer

Replace GET value in nginx or Tomcat

I use an application that runs on Tomcat and an Nginx as reverse Proxy. To Log in with the application, the user has to either type in his user group, a user name and his password or use a specific URL in which the user group is already choosen with…
tdog
  • 1
0
votes
1 answer

get request for a website in a php script

I want to get request in a website like that $id = "something"; $response = http_get("http://example.com?id=$id, array("timeout"=>1), $out); I don't find how exactly I can use http_get I've tried with file_get_contents, it is working like $out =…
Ramazan Zor
  • 209
  • 1
  • 14
0
votes
0 answers

preRenderView not working during a method call

I have in my JSF 2.2 page an event listener in the and its preRenderView is not working on every page call, it's only working for the first page load and when I use the add() method the lists refreshes at shows the added line, but I…
Dwix
  • 1,139
  • 3
  • 20
  • 45
0
votes
0 answers

Pull RSS feed using Jquery .get; cross domain issues?

I have been trying to get the example from How to parse an RSS feed using JavaScript? working. My HTMl/script is below. The get request isn't working. I'm not getting any errors, just nothing happening. Is this because of cross-domain issues? Can…
DVCITIS
  • 1,067
  • 3
  • 16
  • 36
0
votes
2 answers

JSONObjectRequest with Volley throws "W/dalvikvm﹕ threadid=1: thread exiting with uncaught exception (group=0x40a6c9d8)"

I'm new to Android development and to SO, I just started couple months ago. You guys have been a huge help so far! I'm using as many external libraries as I can. I'm using Volley and JSONObject to make a GET request to the server. The problem…
0
votes
0 answers

Angularjs service to populate options from get request with processing

I have a service in angular js. In this service I have a method that generates a get request against a json input. On the results I want to do some processing on the json response and then return the processed values. The processed values would…
Robbo_UK
  • 11,351
  • 25
  • 81
  • 117