Authentication Endpoints
Method | URL | Description |
---|---|---|
POST |
https://api.qwikgeo.com/api/v1/authentication/token |
Token |
POST |
https://api.qwikgeo.com/api/v1/authentication/google_token_authenticate |
Google Token Authenticate |
Endpoint Description's
Token
Description
The token endpoint allows you to receive a JWT token to authenticate with the API.
Token endpoint is available at https://api.qwikgeo.com/api/v1/authentication/token
Example Input
Example Output
{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6M30.PJZEu9eDOBqSQTWJkNMCdV__tvuETyEVRwA5wH9Ansc",
"token_type": "Bearer"
}
Google Token Authenticate
Description
The google token authenticate endpoint allows you to receive a JWT token to authenticate with the API via a Google JWT Token.
Google Token Authenticate endpoint is available at https://api.qwikgeo.com/api/v1/authentication/google_token_authenticate
Example Input
{
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6M30.PJZEu9eDOBqSQTWJkNMCdV__tvuETyEVRwA5wH9Ansc"
}