Every 10 minutes, if an authentication key hasn’t been updated, the system will kill it off, thus rendering that session no longer valid.
However, it is your duty as a developer to ensure you send a kill request where possible. This will ensure your account is running efficiently and you are not hogging up too many authentication keys that are not even being used anymore.
For example, when the user exits your game or app, or when they log out, you should send a simple kill request to the API to instruct it to remove the authentication key from your account.
It is very easy to do this.
How to Send a Kill Request
Simply GET this URL
https://gamipixel.com/api/v1/gami-kill-auth
and send your API and Authentication key with the POST$
api_key=<your_api_key> authentication_key=<authentication_key>
Kill Request Success
You can choose to wait to see if the kill request and the response should be
Authentication key successfully killed.
Any message that’s different means it’s invalid or expired. For both events, you can just continue.