vote up 4 vote down star
3

Let say that I have a website with some information that could be access externally. Those information need to be only change byt the respected client. Example: Google Analytic or WordPress API key. How can I create a system that work like that (no matter the programming language)?

flag

5 Answers

vote up 4 vote down check

A number of smart people are working on a standard, and it's called OAuth. It already has a number of sample implementations, so it's pretty easy to get started.

link|flag
Agreed. Pownce.com and many other have successfully implemented/produced OAuth, and its the best way, IMO, to get the results your after. – bryanpearson Sep 16 '08 at 21:35
The website of OAuth explain well the situation. Thx for the solution. – Daok Sep 16 '08 at 21:36
vote up 0 vote down

Simple:

  1. Generate a key for each user
  2. Deny access for each request without this key
link|flag
vote up 0 vote down

A good way of generating a key would be to store a GUID (Globally Unique Identifier) on each user record n the database. GUID is going to be unique and almost impossible to guess.

link|flag
vote up 0 vote down

Currently, I use a concatenation of multiple MD5s with a salt. The MD5s are generated off of various concatenations of user data.

link|flag
vote up 1 vote down

Here is a document on API design.

link|flag
I give you 1 point but the document is pretty beginner... Most thing is simple coding concept. – Daok Sep 17 '08 at 0:33

Your Answer

Get an OpenID
or

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