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
2
votes
1 answer

Is there any Instagram Direct Messages RESTful type API?

I am working in an messaging app, I need to implement Instagram direct messaging, but i cant able to find any official direct message API support. Is there any private API which can provide direct messaging support. Please let me know. I need some…
Jeba Moses
  • 809
  • 8
  • 25
2
votes
1 answer

Sending GET Request with NodeMCU ESP8266

I'm trying to send a standard http GET request to my website using the NodeMCU example client code however for some reason it is not working. If I type into my browser: snackrefill.com/GetData.php?username=aaaa&pin=bbbb&cost=cccc then it will…
DiscreteTomatoes
  • 769
  • 1
  • 14
  • 30
2
votes
3 answers

NodeJS request object is empty on GET request

I have a code where i am trying to get some value from a drop down menu using a get request. However, when i click on submit, the request object is empty. i did use the body parser and bodyParser.json and declared them before the routes, however the…
Neo
  • 89
  • 1
  • 9
2
votes
3 answers

Retrofit failure(onfailure method is called) : Expected BEGIN_OBJECT but was BEGIN_ARRAY at line 1 column 1114 path $.og_user_node

MY Pojo Class package com.webnoo.questin.controllers.networks.pojo; import java.util.List; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Profile { @SerializedName("uid") …
Naman
  • 39
  • 11
2
votes
1 answer

Write GET request for docker

Dockerd daemon gives me such output: ERRO[2857] Handler for GET /v1.26/containers/jupyter-user/json returned error: No such container: jupyter-user How can I write GET-request in terminal to docker daemon to see such output?
Kenenbek Arzymatov
  • 8,439
  • 19
  • 58
  • 109
2
votes
1 answer

C http server send get requests to my server?

This is the server I am learning from: http://blog.abhijeetr.com/2010/04/very-simple-http-server-writen-in-c.html. I completely don't understand get requests servers and the like. How can I send a get request? The reason I don't think I know how to…
TheMangaStand
  • 193
  • 3
  • 13
2
votes
0 answers

Jasmine testing get request after promise. Error: No pending request to flush?

I need your help. I'm getting an error: Error: No pending request to flush ! Here is my factory: angular.module('myapp') .factory('WebDB', function ($http, LocalDB) { function lastChangeParameter(resource) { return new Promise(function…
Wewox
  • 21
  • 2
2
votes
0 answers

xmlHttpRequest GET/POST with Spring MVC

I am trying to find a workaround for using POST request, because I cannot use form, pass parameter and redirect to another page without displaying the parameter in the URL. I heard it is possible to do that via XHR GET request but I am not sure how.…
user1067577
  • 247
  • 1
  • 7
  • 15
2
votes
1 answer

django get requests - getting Russian symbols from the form

I had a search form in my forms.py: class search_form(forms.Form): text = forms.CharField( widget = forms.TextInput({ "placeholder": "введите слово" }) ) and my form header is
Then I'm…
birdy90
  • 134
  • 1
  • 2
  • 14
2
votes
1 answer

CakePHP redirect method not redirecting

I am trying to redirect to a new page using CakePHP redirect method but for some reason the redirect is not working. The code I am using to redirect is public function update_sticky_postition_in_db() { $this->autoRender = false; ...…
Lsakurifaisu
  • 133
  • 1
  • 12
2
votes
1 answer

C++ HTTP GET request problems?

I have written a program that sends a tcp request to a web address specified in the command line and prints the response. When I send thisget request to www.google.co.uk (or any website) I get nothing back :( Could somebody tell me what I'm doing…
brnby
  • 1,433
  • 1
  • 19
  • 35
2
votes
2 answers

404 when using POST / GET parameters in WordPress 3.4

I have permalinks set to "Post name". If I put in my address bar: http://www.example.com/section1/whitepapers/, WordPress loads it correctly, but if I send a POST or GET request to the same URL, it throws a 404 error inside WordPress. This is my…
LuisVM
  • 2,763
  • 3
  • 20
  • 22
1
vote
1 answer

How to avoid XSS attacks with GET requests, and automate offending IP addresses to IP deny list in IIS?

I noticed some XSS attempts on some of our sites due to some old URL's raising the errors. ie. http://www.mysite.com/[some old keyword]/searchterm . These sites are MVC3 sites, and from my understanding of using the anti-forgery token - this is…
ElHaix
  • 12,846
  • 27
  • 115
  • 203
1
vote
1 answer

boost::asio send get request after ssl connection

I'm using boost::asio and I've been looking at the example code on how to connect to an ssl host. But I want to send a get request after I've connected to the server through ssl, how is this possible? Do I send a get request as the http example do…
user1064036
  • 157
  • 4
  • 11
1
vote
1 answer

Chrome extension xhr cross domain request gives error:"is not allowed by Access-Control-Allow-Origin."

I cant seem to request this url: "https://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=dogs" from my popup.html. I'm getting: XMLHttpRequest cannot load https://ajax.googleapis.com/ajax/services/search/web? v=1.0&q=dogs. Origin…
yogi
  • 1,327
  • 2
  • 12
  • 33