I'm designing a public API to my company's data. We want application developers to sign up for an API key, so we can monitor use and overuse.

Since the API is REST, my initial thought is to put this key in a custom header. This is how I've seen Google, Amazon and Yahoo do it. My boss on the other hand thinks the API is easier to use, if the key simply becomes a part of the URL, etc. "http://api.domain.tld/longapikey1234/resource". I guess there is something to be said for that, but it kinda violates the principle of the URL as a simply address of what you want, and not how or why you want it.

Would you find it logical to put the key in the URL? Or would you rather not have to manually set HTTP headers if writing a simple javascript frontend to some data?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

It should be put in the HTTP Authorization header. The spec is here https://tools.ietf.org/html/draft-ietf-httpbis-p7-auth-13

link|improve this answer
I already use the Authorization header for the third part - the end user. That is the end user needs to log in to the app to gain full access to the content. – Thomas Ahle Apr 1 '11 at 23:31
1  
@Thomas There is no limit to the number of parameters you can put in the auth header. Look at OAuth it has about 8 different parameter values in the header. – Darrel Miller Apr 1 '11 at 23:42
feedback

I would not put the key in the url, as it does violate this loose 'standard' that is REST. However, if you did, I would place it in the 'user' portion of the url.

eg: http://me@example.com/myresource/myid

This way it can also be passed as headers with basic-auth.

link|improve this answer
feedback

If you want an argument that might appeal to a boss: Think about what a URL is. URLs are public. People copy and paste them. They share them, they put them on advertisements. Nothing prevents someone (knowingly or not) from mailing that URL around for other people to use. If your API key is in that URL, everybody has it.

link|improve this answer
Good point. Thank you. – Thomas Ahle Jun 3 '11 at 10:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.