What is the secret key?
Your secret key (or 'client secret') is unique to your listing and is required when requesting the token to access the Authorization API. You will pass the secret key as part of the request to our token endpoint, per the example below.
POST https://auth.govx.com/oauth/token
Content-Type: application/x-www-form-urlencoded
client_id={client_id}
&redirect_uri={original_redirect_uri}
&code={code_from_response}
&client_secret={secret_key}
&grant_type=authorization_code
Read more about the full OAuth implementation here.
Why reset your secret key?
Under normal circumstances, you should never have to reset your secret key. The exception is if you believe the secret key has been compromised.
If you do reset your secret key, you will have to update your OAuth implementation to pass the new value to our token endpoint. Otherwise your implementation will stop working.
If you reset your secret key in your admin account, there is no way to undo the action.
Comments
0 comments
Please sign in to leave a comment.