9
votes
8answers
720 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 …
9
votes
3answers
3k views
correct HTTP header for json file
I've searched around and found two different ways to define Content-type for JSON file loaded with php.
header('Content-type: text/json');
header('Content-type: application/json');
which one should …
9
votes
3answers
2k 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 …
8
votes
11answers
1k views
Making sure a web page is not cached, across all browsers.
Our investigations have shown us that not all browsers respect the http cache directives in a uniform manner.
For security reasons we do not want certain pages in our application to cached, ever, by …
7
votes
1answer
3k views
Proper MIME type for PDF files
When working with PDFs, I've run across the MIME types 'application/pdf' and 'application/x-pdf' among others.
Is there a difference between these two types, and if so what is it? Is one preferred …
7
votes
6answers
3k views
How to encode the filename parameter of Content-Disposition header in HTTP?
Web applications that want to force a resource to be downloaded rather than directly rendered in a Web browser issue a Content-Disposition header in the HTTP response of the form:
…
6
votes
4answers
383 views
How to encode UTF8 filename for HTTP headers? (Python, Django)
Hi,
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; …
6
votes
2answers
292 views
HTTP Authentication in Python
Whats is the python urllib equivallent of
curl -u username:password status="abcd" http://example.com/update.json
I did this:
handle = urllib2.Request(url)
authheader = "Basic %s" % …
6
votes
4answers
409 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 …
6
votes
2answers
3k 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?
…
5
votes
3answers
196 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 …
5
votes
5answers
439 views
Can I host two separate web servers on a LAN to the outside world through 1 IP address?
I am a web programmer with a home web dev operation. I have multiple web servers in my house on a FIOS connection. I have my own domain pointed to my router through dyndns.org's custom domain service.
…
5
votes
3answers
425 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 …
5
votes
6answers
6k 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.
4
votes
2answers
113 views
How to send a file via HTTP, the good way, using Python?
If a would-be-HTTP-server written in Python2.6 has local access to a file, what would be the most correct way for that server to return the file to a client, on request?
Let's say this is the current …
