Tagged Questions
50
votes
7answers
50k views
Accessing HTTP Headers in Javascript?
How do I access the HTTP response headers via JavaScript?
Related to this question, which was modified to ask about specifically accessing browser information.
38
votes
7answers
26k views
What's the difference between Cache-Control: max-age=0 and no-cache?
max-age=0 implies that the content is considered stale (and must be re-fetched) immediately, which is in effect the same thing as no-cache.
Google has failed to solve this mystery for me :(
34
votes
9answers
9k views
How big can a user agent string get?
If you were going to store a user agent in a database, how large would you accomdate for?
I found this technet article which recommends keeping UA under 200. It doesn't look like this is defined in ...
34
votes
7answers
13k views
How do you send a HEAD HTTP request in Python?
So what I'm trying to do here is get the headers of a given URL so I can determine the mime-type. I want to be able to see if http://somedomain/foo/ will return an html document or a jpg image for ...
28
votes
8answers
6k views
Paging in a Rest Collection
I'm interested in exposing a direct REST interface to collections of JSON documents (think CouchDB or Persevere). The problem I'm running into is how to handle the GET operation on the collection root ...
27
votes
4answers
5k views
Custom HTTP headers : naming conventions
Several of our users have asked us to include data relative to their account in the HTTP headers of requests we send them, or even responses they get from our API.
What is the general convention to ...
21
votes
3answers
5k views
application/x-www-form-urlencoded or multipart/form-data?
In HTTP there are two ways to POST data: application/x-www-form-urlencoded and multipart/form-data. I understand that most browsers are only able to upload files if multipart/form-data is used. Is ...
21
votes
8answers
20k views
Easy way to test a URL for 404 in PHP?
I'm teaching myself some basic scraping and I've found that sometimes the URL's that I feed into my code return 404, which gums up all the rest of my code.
So I need a test at the top of the code to ...
18
votes
2answers
10k views
Maximum on http header values?
Is there an accepted maximum allowed size for HTTP headers? If so, what is it? If not, is this something that's server specific or is the accepted standard to allow headers of any size?
16
votes
3answers
2k views
Ideal HTTP cache control headers for different types of resources
I want to find a minimal set of headers, that work with "all" caches and browsers (also when using HTTPS!)
On my web site, I'll have three kinds of resources:
(1) Forever cacheable (public / equal ...
16
votes
7answers
858 views
Asking browsers to cache as aggressively as possible
This is about a web app that serves images. Since the same request will always return the same image, I want the accessing browsers to cache the images as aggressively as possible. I pretty much want ...
16
votes
4answers
11k views
Is there a practical HTTP Header length limit?
I have a web application that adds contextual information to XmlHttpRequest objects using the setRequestHeader API. I am using a custom header name (e.g. X-Foo) and a JSON structured value. It isn't ...
15
votes
2answers
9k views
C# Get http:/…/File Size
I want to get the size of an http:/.../file before I download it. The file can be a webpage, image, or a media file. Can this be done with HTTP headers? How do I download just the file HTTP header?
...
14
votes
3answers
15k views
Examine http response headers in IE8
I'm looking for an ie8-addon that displays the http headers like firebug or httpliveheaders do. Any advice is appreciated.
edit: I may be blind but it seems as if the built-in developer tools (F12) ...
13
votes
4answers
1k views
Is REST DELETE really idempotent?
DELETE is supposed to be idempotent.
If I DELETE http://example.com/account/123 it's going to delete the account.
If I do it again would I expect a 404, since the account no longer exists? What if I ...
13
votes
5answers
6k views
Parsing HTTP User-Agent string
What is the best method to parse a User-Agent string in Python to reliably detect
Browser
Browser version
OS
Or perhaps any helper library that does it
13
votes
4answers
3k views
Parse Accept Header
Does anyone have any suggestions (or a regular expression) for parsing the HTTP Accept header?
I am trying to do some content-type negotiation in ASP.NET MVC. There doesn't seem to be a built in way ...
11
votes
2answers
3k views
How to set response filename without forcing saveas dialog
I am returning a stream in some response setting the appropriate content-type header. The behavior i'm looking for is this:
If the browser is able to render content of the given content-type then it ...
11
votes
5answers
4k views
How to encode UTF8 filename for HTTP headers? (Python, Django)
I have problem with HTTP headers, they're encoded in ASCII and I want to provided a view for downloading files that names can be non ASCII.
response['Content-Disposition'] = 'attachment; ...
11
votes
2answers
3k views
Difference between Content-Range and Range headers?
What is the difference between HTTP headers Content-Range and Range? When should each be used?
I am trying to stream an audio file from a particular byte offset. Should I use Content-Range or Range ...
11
votes
4answers
2k views
What is the purpose of the HTTP header field “Content-Location”?
Confused/inspired by a comment to my question Do search engines respect the HTTP header field “Content-Location”?, I’d like to know, what the exact purpose of the Content-Location header field in HTTP ...
10
votes
3answers
13k views
Uses of content-disposition in an HTTP response header
I have found the following asp.net code to be very useful when serving files from a database:
Response.AppendHeader("content-disposition", "attachment; filename=" + fileName);
This lets the user ...
9
votes
2answers
2k views
Are HTTP headers case-sensitive?
In a blog post I use the following PHP to set the content-type of a response:
header('content-type: application/json; charset=utf-8');
I just got a comment on that post saying that content-type ...
9
votes
10answers
1k views
Recommended way to check file size on upload
I am working on a web application which supports file uploading. I am already familiar checking the size in server side, but i wanted to check the file size in a client side.
I know its a browser ...
9
votes
4answers
1k views
Authorizing REST Requests
I'm working on a REST service that has a few requirements:
It has to be secure.
Users should not be able to forge requests.
My current proposed solution is to have a custom Authorization header ...
8
votes
3answers
341 views
What's the difference between keep_alive and persistent option for HTTP request?
Can someone explain us the difference in behaviour between the following parameters :
keep_alive parameter in Zend_Http_Client class ?
and
persistent in Zend_Http_Client_Adapter_Socket class ?
I'd ...
8
votes
3answers
7k views
How to evaluate http response codes from bash/shell script?
I have the feeling that I'm missing the obvious, but have not succeeded with man [curl|wget] or google ("http" makes such a bad search term). I'm looking for a quick&dirty fix to one of our ...
8
votes
5answers
622 views
HTTP MODIFY verb for REST?
As far as I see, there's no RESTful way to apply a modification to a resource. In order to do it, you have to PUT the resource as a whole, overwriting the previous representation. I think this is ...
8
votes
5answers
11k views
Getting the client IP address: REMOTE_ADDR, HTTP_X_FORWARDED_FOR, what else could be useful?
I understand it's a standard practice to look at both these variables. Of course they can easily be spoofed. I'm curious how often can you expect these values (especially the HTTP_X_FORWARDED_FOR) to ...
8
votes
2answers
8k views
How to modify the header of a HttpUrlConnection
Im trying to improve the Java Html Document a little but i'm running into problems with the HttpUrlConntion. One thing is that some servers block a request if the user agent is a Java VM. Another ...
8
votes
4answers
1k views
Do search engines respect the HTTP header field “Content-Location”?
I was wondering if search engines respect the HTTP header field Content-Location.
This could be useful e.g. when you want to remove the session id argument out of the URL:
GET ...
8
votes
5answers
4k views
'Refresh' HTTP header
I'm automating a web application (the Mantis bug tracker) and I'm getting an interesting response header from it, called Refresh:
HTTP/1.x 200 OK
...
Refresh: 0;url=my_view_page.php
It seems to be ...
8
votes
5answers
21k views
How do I access the HTTP request header fields via JavaScript?
I want to capture the HTTP request header fields, primarily the Referer and User-Agent, within my client-side JavaScript. How may I access them?
Google Analytics manages to get the data via ...
7
votes
3answers
340 views
In what cases will HTTP_REFERER be empty
I know it's possible to get an empty HTTP_REFERER. Under what circumstances does this happen? If I get an empty one, does it always mean that the user changed it? Is getting an empty one the same as ...
7
votes
7answers
317 views
PHP default headers question
When I simply echo something out of php file, I do not send any headers intentionally, however - there are some default headers present anyway when I look at firebug response:
response headers:
...
7
votes
2answers
608 views
Apache server as proxy to Jboss problem
Currently my web application is running on jboss but I have an apache server that is used as a proxy to my application. I have the ability to upload XML files on my jboss server. When it is uploaded, ...
7
votes
6answers
5k views
Google.com and clients1.google.com/generate_204
I was looking into google.com's Net activity in firebug just because I was curious and noticed a request was returning "204 No Content."
It turns out that a 204 No Content "is primarily intended to ...
7
votes
3answers
770 views
How can I access request headers that don't appear in $_SERVER?
I am attempting to create a REST API in PHP and I'd like to implement an authentication scheme similar to Amazon's S3 approach. This involves setting a custom 'Authorization' header in the request.
I ...
7
votes
9answers
6k views
Tool to view response headers
What is the best way to view the HTTP response headers from a request against a particular URL? Telnet or is there some other really good command or tool?
7
votes
5answers
3k views
UTF-8 characters mangled in HTTP Basic Auth username
I'm trying to build a web service using Ruby on Rails. Users authenticate themselves via HTTP Basic Auth. I want to allow any valid UTF-8 characters in usernames and passwords.
The problem is that ...
7
votes
5answers
5k views
What is the correct response to an HTTP POST request?
For a POST method, the W3 specs say:
If a resource has been created on the origin server, the response
SHOULD be 201 (Created) and contain an entity which describes the
status of the ...
6
votes
2answers
75 views
What is q=0.5 in Accept* HTTP headers?
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
What do these 'q=%f' mean?
6
votes
3answers
192 views
Accept and Accept-Charset - Which is superior?
In HTTP you can specify in a request that your client can accept specific content in responses using the accept header, with values such as application/xml. The content type specification allows you ...
6
votes
2answers
277 views
correct HTTP response headers to cause 304s after content expiration
I'd like an HTTP response to expire 24 hours from now (meaning the browser won't make any requests for that URL until tomorrow). But, if the request is re-issued tomorrow after expiration, I want to ...
6
votes
2answers
542 views
HTTP Header - ntCoent-Length
I get the following HTTP response headers in a particular response. All looks okay. However I have noticed that the content-length appears twice...
Content-Length: 2424
ntCoent-Length: 2424
Is ...
6
votes
4answers
2k views
Modifying HTTP response headers in Firefox
Does anyone know if Firefox extensions are allowed to modify HTTP response headers? For example, can an extension remove the x-frame-options header to let the page load in an iframe?
Thanks
6
votes
1answer
781 views
Is my implementation of HTTP Conditional Get answers in PHP is OK?
After searching a lot, reading every tutorials I've found and asking some questions here, I've finally managed to answer corrctly (at least I think) to if-none-match and if-modified-since HTTP ...
6
votes
4answers
266 views
Why does the Server HTTP header exist?
What is the Server HTTP response header useful for? I have yet to actually see a use for it. Why would someone that's requesting a webpage need to know what server a webpage is hosted on?
6
votes
5answers
8k views
Java URLConnection : how could I find out a file's size?
I'm working on a project for school , and I'm implementing a tool which can be used to download files from the web ( with a throttling option ) . The thing is , I'm gonna have a GUI for it , and I ...
5
votes
3answers
3k views
Get “Content-Type” header of request in PHP
I'm implementing a REST service in PHP. This service should be able to support multiple input and output formats (JSON, XML). For that reason I want to check the request headers "Accept" and ...