Emitir bearer token
curl --request POST \
--url https://api.uvvipay.com.br/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"grant_type": "client_credentials",
"client_id": "client_6ed22e426acd12d8aeb3ebc6",
"client_secret": "secret_..."
}
'import requests
url = "https://api.uvvipay.com.br/oauth/token"
payload = {
"grant_type": "client_credentials",
"client_id": "client_6ed22e426acd12d8aeb3ebc6",
"client_secret": "secret_..."
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
grant_type: 'client_credentials',
client_id: 'client_6ed22e426acd12d8aeb3ebc6',
client_secret: 'secret_...'
})
};
fetch('https://api.uvvipay.com.br/oauth/token', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.uvvipay.com.br/oauth/token",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'grant_type' => 'client_credentials',
'client_id' => 'client_6ed22e426acd12d8aeb3ebc6',
'client_secret' => 'secret_...'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.uvvipay.com.br/oauth/token"
payload := strings.NewReader("{\n \"grant_type\": \"client_credentials\",\n \"client_id\": \"client_6ed22e426acd12d8aeb3ebc6\",\n \"client_secret\": \"secret_...\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.uvvipay.com.br/oauth/token")
.header("Content-Type", "application/json")
.body("{\n \"grant_type\": \"client_credentials\",\n \"client_id\": \"client_6ed22e426acd12d8aeb3ebc6\",\n \"client_secret\": \"secret_...\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.uvvipay.com.br/oauth/token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"grant_type\": \"client_credentials\",\n \"client_id\": \"client_6ed22e426acd12d8aeb3ebc6\",\n \"client_secret\": \"secret_...\"\n}"
response = http.request(request)
puts response.read_body{
"access_token": "<string>",
"token_type": "Bearer",
"expires_in": 3600
}{
"error": "unsupported_grant_type",
"error_description": "Somente o grant_type \"client_credentials\" e suportado."
}{
"error": "invalid_client",
"error_description": "Credenciais invalidas."
}OAuth
Emitir bearer token
Emite um bearer token pelo fluxo OAuth2 client_credentials. Envie as credenciais no body (JSON ou application/x-www-form-urlencoded) ou no header Authorization: Basic base64(client_id:client_secret). O token expira em 3600 segundos. A resposta retorna os headers Cache-Control: no-store e Pragma: no-cache (RFC 6749).
POST
/
oauth
/
token
Emitir bearer token
curl --request POST \
--url https://api.uvvipay.com.br/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"grant_type": "client_credentials",
"client_id": "client_6ed22e426acd12d8aeb3ebc6",
"client_secret": "secret_..."
}
'import requests
url = "https://api.uvvipay.com.br/oauth/token"
payload = {
"grant_type": "client_credentials",
"client_id": "client_6ed22e426acd12d8aeb3ebc6",
"client_secret": "secret_..."
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
grant_type: 'client_credentials',
client_id: 'client_6ed22e426acd12d8aeb3ebc6',
client_secret: 'secret_...'
})
};
fetch('https://api.uvvipay.com.br/oauth/token', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.uvvipay.com.br/oauth/token",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'grant_type' => 'client_credentials',
'client_id' => 'client_6ed22e426acd12d8aeb3ebc6',
'client_secret' => 'secret_...'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.uvvipay.com.br/oauth/token"
payload := strings.NewReader("{\n \"grant_type\": \"client_credentials\",\n \"client_id\": \"client_6ed22e426acd12d8aeb3ebc6\",\n \"client_secret\": \"secret_...\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.uvvipay.com.br/oauth/token")
.header("Content-Type", "application/json")
.body("{\n \"grant_type\": \"client_credentials\",\n \"client_id\": \"client_6ed22e426acd12d8aeb3ebc6\",\n \"client_secret\": \"secret_...\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.uvvipay.com.br/oauth/token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"grant_type\": \"client_credentials\",\n \"client_id\": \"client_6ed22e426acd12d8aeb3ebc6\",\n \"client_secret\": \"secret_...\"\n}"
response = http.request(request)
puts response.read_body{
"access_token": "<string>",
"token_type": "Bearer",
"expires_in": 3600
}{
"error": "unsupported_grant_type",
"error_description": "Somente o grant_type \"client_credentials\" e suportado."
}{
"error": "invalid_client",
"error_description": "Credenciais invalidas."
}O endpoint segue a RFC 6749 (OAuth2, grant
client_credentials). Crie o
client_id e o client_secret no painel, em Configurações → API
Clients. O client_secret aparece uma única vez na criação.Authorization:
curl https://api.uvvipay.com.br/recurso-protegido \
-H "Authorization: Bearer SEU_ACCESS_TOKEN"
Body
application/jsonapplication/x-www-form-urlencoded
Unico grant suportado.
Available options:
client_credentials Example:
"client_credentials"
Identificador do client. Opcional se enviado via Authorization: Basic.
Example:
"client_6ed22e426acd12d8aeb3ebc6"
Secret do client. Opcional se enviado via Authorization: Basic.
Example:
"secret_..."

