Skip to main content

Retrieve an access token with the code provided by OAuth 2 authentication

POST 

https://api.betaseries.com/oauth/access_token

Retrieves an access token with the code provided by OAuth 2 authentication.

Request

Responses

Successful operation

Authorization: X-BetaSeries-Key

name: X-BetaSeries-Keytype: apiKeyin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.betaseries.com/oauth/access_token");
request.Headers.Add("X-BetaSeries-Key", "<API_KEY_VALUE>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.betaseries.com
Auth
Parameters
— query
— query
— query
— query
— query
ResponseClear

Click the Send API Request button above and see the response here!