Top "Get" questions

GET is one of many request methods supported by the HTTP protocol.

Do I need a content-type header for HTTP GET requests?

As far as I understood there are two places where to set the content type: The client sets a content …

http get content-type
Getting "TypeError: failed to fetch" when the request hasn't actually failed

I'm using fetch API within my React app. The application was deployed on a server and was working perfectly. I …

javascript get fetch-api
Common HTTPclient and proxy

I am using apache's common httpclient library. Is it possible to make HTTP request over proxy? More specific, I need …

java post proxy get httpclient
How to get an object's methods?

Is there a method or propertie to get all methods from an object? For example: function foo() {} foo.prototype.a = …

javascript function object methods get
Get only filename from url in php without any variable values which exist in the url

I want to get filename without any $_GET variable values from a URL in php? My URL is http://learner.…

php url get filenames
How do I select between the 1st day of the current month and current day in MySQL?

I need to select data from MySQL database between the 1st day of the current month and current day. select*…

mysql date get
How do you get/set media volume (not ringtone volume) in Android?

Is there a way to get/set media volume? I have tried the following: AudioManager audio = (AudioManager) getSystemService(Context.AUDIO_…

android get media volume android-audiomanager
HTTP get with headers using RestTemplate

How can I send a GET request using the Spring RestTemplate? Other questions have used POST, but I need to …

android spring http get resttemplate
PHP - Get array value with a numeric index

I have an array like: $array = array('foo' => 'bar', 33 => 'bin', 'lorem' => 'ipsum'); echo native_function($array, 0); // bar …

php arrays get indexing numeric
How to send parameters with jquery $.get()

I'm trying to do a jquery GET and i want to send a parameter. here's my function: $(function() { var availableProductNames; $.…

ajax jquery get