Lấy access token
Gọi API này cùng với authorization code và code verifier, hoặc refresh_token để lấy access token
Header Parameters
- x-secret-key string required
Khoá bí mật, yêu cầu Zalopay team cung cấp khoá này
- application/json
Request Body required
- code string
Authorization code lấy từ bước zlpSdk.User.getOauthV1Code
- code_verifier string
Code verifer được tạo ở bước zlpSdk.User.getOauthV1Code
- refresh_token string
Dùng để lấy access token mới, mỗi access_token sẽ đi cùng 1 refresh_token có thời hạn 30 ngày
Responses
- 200
data if success or error if failed
- application/json
- Schema
- Example (from schema)
Schema
data object
only exist if success
access_token stringAccess token dùng để gọi Zalopay Authorization API
refresh_token stringDùng để lấy access token mới, mỗi access_token sẽ đi cùng 1 refresh_token có thời hạn 30 ngày
expires_in integerThời hạn của access token theo đơn vị mili giấy
refresh_expires_in integerThời hạn của refresh_token theo đơn vị mili giây
permissions string[]Danh sách quyền(scopes) được được cho phép bởi người dùng
error object
only exist if error
error stringcode integerdetails object
error_info object
reason stringdomain stringlocalized_message object
message string
{
"data": {
"access_token": "string",
"refresh_token": "string",
"expires_in": 0,
"refresh_expires_in": 0,
"permissions": [
"string"
]
},
"error": {
"error": "string",
"code": 0,
"details": {
"error_info": {
"reason": "string",
"domain": "string"
},
"localized_message": {
"message": "string"
}
}
}
}
Loading...