Does anyone know of any API key generator script/class for PHP? The class should have method generate, that would generate a key and isValid() method, to check if the key is valid.
|
|
There are multiple ways to generate API keys. I've used following 3 methods depending on the applications,
Please keep in mind that there is no security in API keys. It's just a name assigned to your API application. More and more people are using terms like "App ID" or "Dev ID" to reflect what it really is. You have to assign another secret key if you want secure your protocol, like |
|||||||
|
|
just use something like this (pseudo code) |
|||||||||||||
|
|
Well as it has been mentioned, it is all dependant on the situation. One method that I needed to use was to authenticate a referer url with a specifically assigned API key. So with the API key all that was really needed was (pseudo) Edit: Just realised the age of the original question :S |
|||
|
|
|
Depending on what you want, you can also use something like 3scale to create keys and manage access to the API. It generates keys, but also tracks rate limits, analytics etc. and allows devs on the API to create new keys. There's a PHP library as one of the connectors: https://support.3scale.net/libraries |
|||
|
|