Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the oauth. Example:Authorization: oauth ********************
Body Params application/json
{
"v": "1",
"language": "en",
"code": "string",
"userAgent": "string",
"fingerprint": "",
"app": "site"
}
Request Code Samples
curl --location --request POST 'https://api-v2.streamvi.io/method/auth/app/exchange' \
--header 'Authorization: oauth <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"v": "1",
"language": "en",
"code": "string",
"userAgent": "string",
"fingerprint": "",
"app": "site"
}'
Responses
application/json {
"accessToken": "string",
"refreshToken": "string"
}
Modified at 2025-09-11 17:15:27