Top "Http-get" questions

HTTP GET is a request method which should be used to retrieve data and should not change state of the server.

Is GET data also encrypted in HTTPS?

When you GET https://encrypted.google.com/search?q=%s Is the %s query encrypted? Or just the response? If …

https http-get
synchronous http call in angularJS

I have the following scenario, I need data from a particular url. I have written a function which takes parameter …

angularjs http http-get
HTTP Status 405 - HTTP method GET is not supported by this URL

The code below is from a book,so it'll not be incorrect.But I don't know how to solve this …

servlets http-get http-status-code-405
How to add query parameters to a HTTP GET request by OkHttp?

I am using the latest okhttp version: okhttp-2.3.0.jar How to add query parameters to GET request in okhttp in …

java http-get okhttp query-parameters
Retrieving GET and POST data inside Laravel controller

I've been searching the web for how to get POST data inside the controller, so far I have found two …

php laravel http-post http-get
How can I check if request was a POST or GET request in Symfony2 or Symfony3

I just wondered if there is a very easy way (best: a simple $this->container->isGet() I can …

php symfony request http-post http-get
How to correctly use axios params with arrays

How to add indexes to array in query string? I tried send data like this: axios.get('/myController/myAction', { …

javascript arrays axios http-get
Passing a list of int to a HttpGet request

I have a function similar in structure to this: [HttpGet] public HttpResponseMessage GetValuesForList(List<int> listOfIds) { /* create model */ …

c# web-services rest get http-get
Is it wrong to return 202 "Accepted" in response to HTTP GET?

I have a set of resources whose representations are lazily created. The computation to construct these representations can take anywhere …

http-status-codes http-get
REST API: GET request with body

I want to implement a REST API and need a body on my GET requests. (Like discussed here: HTTP GET …

.net rest asp.net-web-api http-get frombodyattribute