Web Application Flow
Partners looking to integrate with our API must create an account and register an application. To get the access token of the user, use the Web Flow below.
The oAuth token is served as a parameter while the Security Token is the public key of the Application.
Step 1 - Authorization
The authenticating web application should redirect users to the following URL: https://wss.hyper-api.com/authorize.php?Parameters
app_id | string | Your Application ID |
grant | string | Value is always "oauth" |
response_type | string | Value is always "code" |
client_id | string | You Application ID |
state | string | An unguessable, cryptographically secure random string used to protect against cross-site request forgery attacks. |