Data Management APIs
- Allocation
- Activity Log
- Audience
- Audience Attribute
- Audience Segment
- Auth and User
- POSTRequest password reset
- POSTGoogle sign-in authentication.
- POSTLogin using JWT authentication.
- POSTLogout using JWT authentication.
- POSTRegister a new user
- POSTRequest a verification token
- POSTReset password
- POSTVerify the user token
- POSTUpsert a privacy consent
- GETGet a privacy consent
- PATCHUpdate user budget
- PATCHUpdate user data
- GETGet all users
- DELDelete a user
- GETGet the current user
- POST
- Campaign
- Catalog
- Creative
- Analytic
- Billing
- System
- License
- Media Library
- Placement Catalog
- Placement
Decision APIs
- Cache Management
- Configuration
- Ad Serving
- Ad Log
- Activity Log
Auth and User
Google sign-in authentication.
Google 인증을 사용하여 로그인합니다.
POST
/
auth
/
jwt
/
google-sign-in
curl --request POST \
--url https://your_a2_service/auth/jwt/google-sign-in \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'access_token=<string>'
{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoiOTIyMWZmYzktNjQwZi00MzcyLTg2ZDMtY2U2NDJjYmE1NjAzIiwiYXVkIjoiZmFzdGFwaS11c2VyczphdXRoIiwiZXhwIjoxNTcxNTA0MTkzfQ.M10bjOe45I5Ncu_uXvOmVV8QxnL-nZfcH96U90JaocI",
"token_type": "bearer"
}
Body
application/x-www-form-urlencoded
Response
200
application/json
Successful Response
The response is of type object
.
이 페이지가 도움이 되었나요?
curl --request POST \
--url https://your_a2_service/auth/jwt/google-sign-in \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'access_token=<string>'
{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoiOTIyMWZmYzktNjQwZi00MzcyLTg2ZDMtY2U2NDJjYmE1NjAzIiwiYXVkIjoiZmFzdGFwaS11c2VyczphdXRoIiwiZXhwIjoxNTcxNTA0MTkzfQ.M10bjOe45I5Ncu_uXvOmVV8QxnL-nZfcH96U90JaocI",
"token_type": "bearer"
}
어시스턴트
Responses are generated using AI and may contain mistakes.