Skip to main content
POST
/
oauth
/
token
Exchange authorization code for access token
curl --request POST \
  --url https://console.gmicloud.ai/api/v1/oauth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "github",
  "code": "abc123def456"
}
'
import requests

url = "https://console.gmicloud.ai/api/v1/oauth/token"

payload = {
    "provider": "github",
    "code": "abc123def456"
}
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({provider: 'github', code: 'abc123def456'})
};

fetch('https://console.gmicloud.ai/api/v1/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://console.gmicloud.ai/api/v1/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([
    'provider' => 'github',
    'code' => 'abc123def456'
  ]),
  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://console.gmicloud.ai/api/v1/oauth/token"

	payload := strings.NewReader("{\n  \"provider\": \"github\",\n  \"code\": \"abc123def456\"\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://console.gmicloud.ai/api/v1/oauth/token")
  .header("Content-Type", "application/json")
  .body("{\n  \"provider\": \"github\",\n  \"code\": \"abc123def456\"\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://console.gmicloud.ai/api/v1/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  \"provider\": \"github\",\n  \"code\": \"abc123def456\"\n}"

response = http.request(request)
puts response.read_body
{
  "accessToken": "ya29.a0AfH6SMB..."
}
{
  "group": "request",
  "code": 0,
  "validationDetail": [
    {
      "field": "code",
      "expression": "required",
      "originalValue": "",
      "reason": "This field is required."
    }
  ]
}
{
  "group": "oauth",
  "code": 1200,
  "message": "Exchange authorization code encountered error.",
  "traces": [
    "error occurred."
  ]
}

Body

application/json

The request body for exchanging authorization code.

provider
enum<string>
required

The OAuth provider name.

  • "github": GitHub OAuth.
Available options:
github
Example:

"github"

code
string
required

The OAuth authorization code received from the OAuth callback.

Example:

"abc123def456"

Response

Successfully exchanged authorization code for access token.

accessToken
string
required

The OAuth access token that can be used to access the provider's API.

Example:

"ya29.a0AfH6SMB..."