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

PHP sessions doesnt work after migration

I have a small dynamic facebook tab which uses Facebook PHP SDK. It has a fangate function and the script uses sessions to store the getRequest, so the fangate works on subpages in tab also. It worked well, but now we moved the script to other…
0
votes
2 answers

Convert GET links to nice links

I'm using Codeigniter in my new web application, and I have a form in page which sends data via post to a server and that server returns the users back to my website but with the parameters via get with ugly links like…
user1524462
  • 95
  • 2
  • 10
0
votes
2 answers

google analytics GET requests

If I have a code that request a page monitored by Google analytics the get response is 200 OK , but it's not logged with Google analytics does any one experienced this behavior ?
foxcoreg
  • 3
  • 1
  • 1
  • 3
0
votes
3 answers

GET ID look up in mysql and show the information

I'm trying to get information from mysql database using GET id. I use the following code to check what the id is. $qry = "SELECT name,country FROM databasetable WHERE uid=$id"; I get error which means that it couldn't find any entry…
andrew
  • 31
  • 1
  • 9
0
votes
1 answer

AJAX GET-request appears in URL bar after refreshing the page in Tomcat that gets restarted

My web app runs under Tomcat, it uses AJAX requests very intensively, and during the development process I have to redeploy the web app intensively too. After the redeployment I usually simply refresh the page knowing that the user session is…
Lyubomyr Shaydariv
  • 20,327
  • 12
  • 64
  • 105
0
votes
1 answer

Large amount of dataURIs compared to images

I'm trying to compare (for performance) the use of either dataURIs compared to a large number of images. What I've done is setup two tests: Regular Images (WPT) Base64 (WPT) Both pages are exactly the same, other than "how" these images/resources…
Zach
  • 1,185
  • 3
  • 24
  • 60
-1
votes
3 answers

Http 500 Internal Server Error

http://localhost:8080/file.jsp?arg1=&arg2=11 runs successfully http://localhost:8080/file.jsp?arg1=&arg2= (empty value for argument 'arg2') shows 500 Internal Server Error The value of 'arg2' is used by an 'int' variable in 'jsp' using…
Ashish Anand
  • 3,531
  • 6
  • 34
  • 45
-1
votes
1 answer

Node.js API multiple get request routes (Frontend - Backend)

I´m working on a project with Node.js API, that have a frontend and a backend. Ich habe already a API-folder inside the frontend, that await for the get request from the backend and that works for the first method like this: export const getChange=…
maladez
  • 1
  • 1
-1
votes
1 answer

Apps script doGet(e) not firing when URLfetch from another apps script project

I need to send 2 pieces of information from 1 apps script project to another apps script project. I created a web app with the doGet(e) function in it. when I paste this web app URL on the browser and {ENTER}, the doGet(e) fires, and I get the…
JohnHMr
  • 1
  • 2
-1
votes
1 answer

C# HttpClient.SendAsync causes error, cannot send a content-body with this verb-type

I am getting error cannot send a content-body with this verb-type. I am calling a GET Endpoint from a C# VSTO desktop application. What am I doing wrong. public static string GetCentralPath(LicenseMachineValidateRequestDTO licenseMachine) { …
Sujoy
  • 1,051
  • 13
  • 26
-1
votes
2 answers

Cannot GET /[object%20Object] when calling axios.get()

When I paste the endpoint URL with query directly inside the axios.get(), it responds correctly and I can see the json object returned. (i.e axios.get(http://localhost:3000/api/products/product_search?secretKey=${secret}&id=${blabla})). However, if…
Murat
  • 19
  • 1
  • 5
-1
votes
2 answers

Google Books API Authors

I'm using the Google Books API and I want the api to send me back book info about a specific author (like list some of their books). However my link currently doesn't seem to be doing that as whenever I use the inauthor parameter, all the books it…
Geek406
  • 21
  • 2
-1
votes
1 answer

make a get request that response a json string in vb.net ,js or python

I'm trying to make a github OAuth but it needs some post and get responses. so how can I make a get request to a specific url an then get the response in form of json, this is the code that I tried: Dim logincookie As CookieContainer Dim rqtp As…
sk geek
  • 1
  • 2
-1
votes
2 answers

How can I combine three inputs into one variable and use it to fetch data from a database using Django?

I am working on my first Django project and learning a lot along the way. So far, I have set up a very simple website and am having trouble with the next steps. Through this project, I am hoping to achieve a website that provides users with reliable…
-1
votes
1 answer

How do I take a GET request and turn it into a JSON object?

I don't actually want to make any calls to a website but I have to take this GET request and turn it into a JSON…
Ravaal
  • 3,233
  • 6
  • 39
  • 66