GET
/
merchant
/
auth
/
sso
/
oauth
/
google
Get Oauth Google
curl --request GET \
  --url https://api.unibee.top/merchant/auth/sso/oauth/google \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "sign": "<string>",
    "userInfo": {
      "email": "<string>",
      "familyName": "<string>",
      "givenName": "<string>",
      "id": "<string>",
      "locale": "<string>",
      "name": "<string>",
      "picture": "<string>",
      "verifiedEmail": true
    }
  },
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

googleCode
string<string>

Google Code

redirectUri
string<string>

The Google Redirect Uri

Response

200 - application/json

The response is of type object.