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.

HTTP GET request in JavaScript?

I need to do an HTTP GET request in JavaScript. What's the best way to do that? I need to …

javascript http-get dashcode
HTTP GET with request body

I'm developing a new RESTful webservice for our application. When doing a GET on certain entities, clients can request the …

rest http http-get
OS X: equivalent of Linux's wget

How can I do an HTTP GET from a Un*x shell script on a stock OS X system? (installing …

macos shell unix http-get
Why am I getting an OPTIONS request instead of a GET request?

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script> <…

jquery xmlhttprequest http-get http-options-method
How to pass POST parameters in a URL?

Basically, I think that I can't, but would be very happy to be proven wrong. I am generating an HTML …

php http http-post http-get
How to add parameters to a HTTP GET request in Android?

I have a HTTP GET request that I am attempting to send. I tried adding the parameters to this request …

java android http-get
PHP cURL GET request and request's body

i'm trying using cURL for a GET request like this: function connect($id_user){ $ch = curl_init(); $headers = array( 'Accept: …

php curl http-get
Is there a limit to the length of a GET request?

Is there a limit to the length of a GET request?

limit http-get
When do you use POST and when do you use GET?

From what I can gather, there are three categories: Never use GET and use POST Never use POST and use …

http-post http-get
Cache an HTTP 'Get' service response in AngularJS?

I want to be able to create a custom AngularJS service that makes an HTTP 'Get' request when its data …

angularjs ajax caching http-get