Login With Google
The "Login With Google" authentication method allows users to securely log in using their Google credentials. This document provides details on how to integrate this authentication method
Overview
Request Body
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"clientId": "950982194245-aap02qd0c1dt29v6ho26l6pqte2m00q9.apps.googleusercontent.com"
}Responses
Success (Code 200)
{
"access": {
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"expires": "2020-05-12T16:18:04.793Z"
},
"refresh": {
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"expires": "2020-05-12T16:18:04.793Z"
}
}Auth Failed (Code 400)
Usage
Last updated