POST CreateToken
{{baseUrl}}/token
BODY json

{
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
}
Examples
REQUEST

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/token");

struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "content-type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);

curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}");

CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])

(client/post "{{baseUrl}}/token" {:content-type :json
                                                  :form-params {:clientId ""
                                                                :clientSecret ""
                                                                :grantType ""
                                                                :deviceCode ""
                                                                :code ""
                                                                :refreshToken ""
                                                                :scope []
                                                                :redirectUri ""}})
require "http/client"

url = "{{baseUrl}}/token"
headers = HTTP::Headers{
  "content-type" => "application/json"
}
reqBody = "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}"

response = HTTP::Client.post url, headers: headers, body: reqBody
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
    Method = HttpMethod.Post,
    RequestUri = new Uri("{{baseUrl}}/token"),
    Content = new StringContent("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}")
    {
        Headers =
        {
            ContentType = new MediaTypeHeaderValue("application/json")
        }
    }
};
using (var response = await client.SendAsync(request))
{
    response.EnsureSuccessStatusCode();
    var body = await response.Content.ReadAsStringAsync();
    Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/token");
var request = new RestRequest("", Method.Post);
request.AddHeader("content-type", "application/json");
request.AddParameter("application/json", "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}", ParameterType.RequestBody);
var response = client.Execute(request);
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "{{baseUrl}}/token"

	payload := strings.NewReader("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\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(res)
	fmt.Println(string(body))

}
POST /baseUrl/token HTTP/1.1
Content-Type: application/json
Host: example.com
Content-Length: 153

{
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
}
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("POST", "{{baseUrl}}/token")
  .setHeader("content-type", "application/json")
  .setBody("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("{{baseUrl}}/token"))
    .header("content-type", "application/json")
    .method("POST", HttpRequest.BodyPublishers.ofString("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}"))
    .build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();

MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}");
Request request = new Request.Builder()
  .url("{{baseUrl}}/token")
  .post(body)
  .addHeader("content-type", "application/json")
  .build();

Response response = client.newCall(request).execute();
HttpResponse response = Unirest.post("{{baseUrl}}/token")
  .header("content-type", "application/json")
  .body("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}")
  .asString();
const data = JSON.stringify({
  clientId: '',
  clientSecret: '',
  grantType: '',
  deviceCode: '',
  code: '',
  refreshToken: '',
  scope: [],
  redirectUri: ''
});

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener('readystatechange', function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open('POST', '{{baseUrl}}/token');
xhr.setRequestHeader('content-type', 'application/json');

xhr.send(data);
import axios from 'axios';

const options = {
  method: 'POST',
  url: '{{baseUrl}}/token',
  headers: {'content-type': 'application/json'},
  data: {
    clientId: '',
    clientSecret: '',
    grantType: '',
    deviceCode: '',
    code: '',
    refreshToken: '',
    scope: [],
    redirectUri: ''
  }
};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const url = '{{baseUrl}}/token';
const options = {
  method: 'POST',
  headers: {'content-type': 'application/json'},
  body: '{"clientId":"","clientSecret":"","grantType":"","deviceCode":"","code":"","refreshToken":"","scope":[],"redirectUri":""}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
const settings = {
  async: true,
  crossDomain: true,
  url: '{{baseUrl}}/token',
  method: 'POST',
  headers: {
    'content-type': 'application/json'
  },
  processData: false,
  data: '{\n  "clientId": "",\n  "clientSecret": "",\n  "grantType": "",\n  "deviceCode": "",\n  "code": "",\n  "refreshToken": "",\n  "scope": [],\n  "redirectUri": ""\n}'
};

$.ajax(settings).done(function (response) {
  console.log(response);
});
val client = OkHttpClient()

val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}")
val request = Request.Builder()
  .url("{{baseUrl}}/token")
  .post(body)
  .addHeader("content-type", "application/json")
  .build()

val response = client.newCall(request).execute()
const http = require('https');

const options = {
  method: 'POST',
  hostname: 'example.com',
  port: null,
  path: '/baseUrl/token',
  headers: {
    'content-type': 'application/json'
  }
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on('data', function (chunk) {
    chunks.push(chunk);
  });

  res.on('end', function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.write(JSON.stringify({
  clientId: '',
  clientSecret: '',
  grantType: '',
  deviceCode: '',
  code: '',
  refreshToken: '',
  scope: [],
  redirectUri: ''
}));
req.end();
const request = require('request');

const options = {
  method: 'POST',
  url: '{{baseUrl}}/token',
  headers: {'content-type': 'application/json'},
  body: {
    clientId: '',
    clientSecret: '',
    grantType: '',
    deviceCode: '',
    code: '',
    refreshToken: '',
    scope: [],
    redirectUri: ''
  },
  json: true
};

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
const unirest = require('unirest');

const req = unirest('POST', '{{baseUrl}}/token');

req.headers({
  'content-type': 'application/json'
});

req.type('json');
req.send({
  clientId: '',
  clientSecret: '',
  grantType: '',
  deviceCode: '',
  code: '',
  refreshToken: '',
  scope: [],
  redirectUri: ''
});

req.end(function (res) {
  if (res.error) throw new Error(res.error);

  console.log(res.body);
});
const axios = require('axios').default;

const options = {
  method: 'POST',
  url: '{{baseUrl}}/token',
  headers: {'content-type': 'application/json'},
  data: {
    clientId: '',
    clientSecret: '',
    grantType: '',
    deviceCode: '',
    code: '',
    refreshToken: '',
    scope: [],
    redirectUri: ''
  }
};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const fetch = require('node-fetch');

const url = '{{baseUrl}}/token';
const options = {
  method: 'POST',
  headers: {'content-type': 'application/json'},
  body: '{"clientId":"","clientSecret":"","grantType":"","deviceCode":"","code":"","refreshToken":"","scope":[],"redirectUri":""}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
#import 

NSDictionary *headers = @{ @"content-type": @"application/json" };
NSDictionary *parameters = @{ @"clientId": @"",
                              @"clientSecret": @"",
                              @"grantType": @"",
                              @"deviceCode": @"",
                              @"code": @"",
                              @"refreshToken": @"",
                              @"scope": @[  ],
                              @"redirectUri": @"" };

NSData *postData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/token"]
                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                   timeoutInterval:10.0];
[request setHTTPMethod:@"POST"];
[request setAllHTTPHeaderFields:headers];
[request setHTTPBody:postData];

NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
                                                if (error) {
                                                    NSLog(@"%@", error);
                                                } else {
                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
                                                    NSLog(@"%@", httpResponse);
                                                }
                                            }];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt

let uri = Uri.of_string "{{baseUrl}}/token" in
let headers = Header.add (Header.init ()) "content-type" "application/json" in
let body = Cohttp_lwt_body.of_string "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}" in

Client.call ~headers ~body `POST uri
>>= fun (res, body_stream) ->
  (* Do stuff with the result *)
 "{{baseUrl}}/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([
    'clientId' => '',
    'clientSecret' => '',
    'grantType' => '',
    'deviceCode' => '',
    'code' => '',
    'refreshToken' => '',
    'scope' => [
        
    ],
    'redirectUri' => ''
  ]),
  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;
}
request('POST', '{{baseUrl}}/token', [
  'body' => '{
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
}',
  'headers' => [
    'content-type' => 'application/json',
  ],
]);

echo $response->getBody();
setUrl('{{baseUrl}}/token');
$request->setMethod(HTTP_METH_POST);

$request->setHeaders([
  'content-type' => 'application/json'
]);

$request->setContentType('application/json');
$request->setBody(json_encode([
  'clientId' => '',
  'clientSecret' => '',
  'grantType' => '',
  'deviceCode' => '',
  'code' => '',
  'refreshToken' => '',
  'scope' => [
    
  ],
  'redirectUri' => ''
]));

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
append(json_encode([
  'clientId' => '',
  'clientSecret' => '',
  'grantType' => '',
  'deviceCode' => '',
  'code' => '',
  'refreshToken' => '',
  'scope' => [
    
  ],
  'redirectUri' => ''
]));
$request->setRequestUrl('{{baseUrl}}/token');
$request->setRequestMethod('POST');
$request->setBody($body);

$request->setHeaders([
  'content-type' => 'application/json'
]);

$client->enqueue($request)->send();
$response = $client->getResponse();

echo $response->getBody();
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-WebRequest -Uri '{{baseUrl}}/token' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
}'
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-RestMethod -Uri '{{baseUrl}}/token' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
}'
import http.client

conn = http.client.HTTPSConnection("example.com")

payload = "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}"

headers = { 'content-type': "application/json" }

conn.request("POST", "/baseUrl/token", payload, headers)

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
import requests

url = "{{baseUrl}}/token"

payload = {
    "clientId": "",
    "clientSecret": "",
    "grantType": "",
    "deviceCode": "",
    "code": "",
    "refreshToken": "",
    "scope": [],
    "redirectUri": ""
}
headers = {"content-type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
library(httr)

url <- "{{baseUrl}}/token"

payload <- "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}"

encode <- "json"

response <- VERB("POST", url, body = payload, content_type("application/json"), encode = encode)

content(response, "text")
require 'uri'
require 'net/http'

url = URI("{{baseUrl}}/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  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}"

response = http.request(request)
puts response.read_body
require 'faraday'

conn = Faraday.new(
  url: 'https://example.com',
  headers: {'Content-Type' => 'application/json'}
)

response = conn.post('/baseUrl/token') do |req|
  req.body = "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"grantType\": \"\",\n  \"deviceCode\": \"\",\n  \"code\": \"\",\n  \"refreshToken\": \"\",\n  \"scope\": [],\n  \"redirectUri\": \"\"\n}"
end

puts response.status
puts response.body
use serde_json::json;
use reqwest;

#[tokio::main]
pub async fn main() {
    let url = "{{baseUrl}}/token";

    let payload = json!({
        "clientId": "",
        "clientSecret": "",
        "grantType": "",
        "deviceCode": "",
        "code": "",
        "refreshToken": "",
        "scope": (),
        "redirectUri": ""
    });

    let mut headers = reqwest::header::HeaderMap::new();
    headers.insert("content-type", "application/json".parse().unwrap());

    let client = reqwest::Client::new();
    let response = client.post(url)
        .headers(headers)
        .json(&payload)
        .send()
        .await;

    let results = response.unwrap()
        .json::()
        .await
        .unwrap();

    dbg!(results);
}
curl --request POST \
  --url {{baseUrl}}/token \
  --header 'content-type: application/json' \
  --data '{
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
}'
echo '{
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
}' |  \
  http POST {{baseUrl}}/token \
  content-type:application/json
wget --quiet \
  --method POST \
  --header 'content-type: application/json' \
  --body-data '{\n  "clientId": "",\n  "clientSecret": "",\n  "grantType": "",\n  "deviceCode": "",\n  "code": "",\n  "refreshToken": "",\n  "scope": [],\n  "redirectUri": ""\n}' \
  --output-document \
  - {{baseUrl}}/token
import Foundation

let headers = ["content-type": "application/json"]
let parameters = [
  "clientId": "",
  "clientSecret": "",
  "grantType": "",
  "deviceCode": "",
  "code": "",
  "refreshToken": "",
  "scope": [],
  "redirectUri": ""
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/token")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
POST RegisterClient
{{baseUrl}}/client/register
BODY json

{
  "clientName": "",
  "clientType": "",
  "scopes": []
}
Examples
REQUEST

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/client/register");

struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "content-type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);

curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}");

CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])

(client/post "{{baseUrl}}/client/register" {:content-type :json
                                                            :form-params {:clientName ""
                                                                          :clientType ""
                                                                          :scopes []}})
require "http/client"

url = "{{baseUrl}}/client/register"
headers = HTTP::Headers{
  "content-type" => "application/json"
}
reqBody = "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}"

response = HTTP::Client.post url, headers: headers, body: reqBody
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
    Method = HttpMethod.Post,
    RequestUri = new Uri("{{baseUrl}}/client/register"),
    Content = new StringContent("{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}")
    {
        Headers =
        {
            ContentType = new MediaTypeHeaderValue("application/json")
        }
    }
};
using (var response = await client.SendAsync(request))
{
    response.EnsureSuccessStatusCode();
    var body = await response.Content.ReadAsStringAsync();
    Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/client/register");
var request = new RestRequest("", Method.Post);
request.AddHeader("content-type", "application/json");
request.AddParameter("application/json", "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}", ParameterType.RequestBody);
var response = client.Execute(request);
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "{{baseUrl}}/client/register"

	payload := strings.NewReader("{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\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(res)
	fmt.Println(string(body))

}
POST /baseUrl/client/register HTTP/1.1
Content-Type: application/json
Host: example.com
Content-Length: 58

{
  "clientName": "",
  "clientType": "",
  "scopes": []
}
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("POST", "{{baseUrl}}/client/register")
  .setHeader("content-type", "application/json")
  .setBody("{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("{{baseUrl}}/client/register"))
    .header("content-type", "application/json")
    .method("POST", HttpRequest.BodyPublishers.ofString("{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}"))
    .build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();

MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}");
Request request = new Request.Builder()
  .url("{{baseUrl}}/client/register")
  .post(body)
  .addHeader("content-type", "application/json")
  .build();

Response response = client.newCall(request).execute();
HttpResponse response = Unirest.post("{{baseUrl}}/client/register")
  .header("content-type", "application/json")
  .body("{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}")
  .asString();
const data = JSON.stringify({
  clientName: '',
  clientType: '',
  scopes: []
});

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener('readystatechange', function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open('POST', '{{baseUrl}}/client/register');
xhr.setRequestHeader('content-type', 'application/json');

xhr.send(data);
import axios from 'axios';

const options = {
  method: 'POST',
  url: '{{baseUrl}}/client/register',
  headers: {'content-type': 'application/json'},
  data: {clientName: '', clientType: '', scopes: []}
};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const url = '{{baseUrl}}/client/register';
const options = {
  method: 'POST',
  headers: {'content-type': 'application/json'},
  body: '{"clientName":"","clientType":"","scopes":[]}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
const settings = {
  async: true,
  crossDomain: true,
  url: '{{baseUrl}}/client/register',
  method: 'POST',
  headers: {
    'content-type': 'application/json'
  },
  processData: false,
  data: '{\n  "clientName": "",\n  "clientType": "",\n  "scopes": []\n}'
};

$.ajax(settings).done(function (response) {
  console.log(response);
});
val client = OkHttpClient()

val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}")
val request = Request.Builder()
  .url("{{baseUrl}}/client/register")
  .post(body)
  .addHeader("content-type", "application/json")
  .build()

val response = client.newCall(request).execute()
const http = require('https');

const options = {
  method: 'POST',
  hostname: 'example.com',
  port: null,
  path: '/baseUrl/client/register',
  headers: {
    'content-type': 'application/json'
  }
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on('data', function (chunk) {
    chunks.push(chunk);
  });

  res.on('end', function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.write(JSON.stringify({clientName: '', clientType: '', scopes: []}));
req.end();
const request = require('request');

const options = {
  method: 'POST',
  url: '{{baseUrl}}/client/register',
  headers: {'content-type': 'application/json'},
  body: {clientName: '', clientType: '', scopes: []},
  json: true
};

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
const unirest = require('unirest');

const req = unirest('POST', '{{baseUrl}}/client/register');

req.headers({
  'content-type': 'application/json'
});

req.type('json');
req.send({
  clientName: '',
  clientType: '',
  scopes: []
});

req.end(function (res) {
  if (res.error) throw new Error(res.error);

  console.log(res.body);
});
const axios = require('axios').default;

const options = {
  method: 'POST',
  url: '{{baseUrl}}/client/register',
  headers: {'content-type': 'application/json'},
  data: {clientName: '', clientType: '', scopes: []}
};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const fetch = require('node-fetch');

const url = '{{baseUrl}}/client/register';
const options = {
  method: 'POST',
  headers: {'content-type': 'application/json'},
  body: '{"clientName":"","clientType":"","scopes":[]}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
#import 

NSDictionary *headers = @{ @"content-type": @"application/json" };
NSDictionary *parameters = @{ @"clientName": @"",
                              @"clientType": @"",
                              @"scopes": @[  ] };

NSData *postData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/client/register"]
                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                   timeoutInterval:10.0];
[request setHTTPMethod:@"POST"];
[request setAllHTTPHeaderFields:headers];
[request setHTTPBody:postData];

NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
                                                if (error) {
                                                    NSLog(@"%@", error);
                                                } else {
                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
                                                    NSLog(@"%@", httpResponse);
                                                }
                                            }];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt

let uri = Uri.of_string "{{baseUrl}}/client/register" in
let headers = Header.add (Header.init ()) "content-type" "application/json" in
let body = Cohttp_lwt_body.of_string "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}" in

Client.call ~headers ~body `POST uri
>>= fun (res, body_stream) ->
  (* Do stuff with the result *)
 "{{baseUrl}}/client/register",
  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([
    'clientName' => '',
    'clientType' => '',
    'scopes' => [
        
    ]
  ]),
  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;
}
request('POST', '{{baseUrl}}/client/register', [
  'body' => '{
  "clientName": "",
  "clientType": "",
  "scopes": []
}',
  'headers' => [
    'content-type' => 'application/json',
  ],
]);

echo $response->getBody();
setUrl('{{baseUrl}}/client/register');
$request->setMethod(HTTP_METH_POST);

$request->setHeaders([
  'content-type' => 'application/json'
]);

$request->setContentType('application/json');
$request->setBody(json_encode([
  'clientName' => '',
  'clientType' => '',
  'scopes' => [
    
  ]
]));

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
append(json_encode([
  'clientName' => '',
  'clientType' => '',
  'scopes' => [
    
  ]
]));
$request->setRequestUrl('{{baseUrl}}/client/register');
$request->setRequestMethod('POST');
$request->setBody($body);

$request->setHeaders([
  'content-type' => 'application/json'
]);

$client->enqueue($request)->send();
$response = $client->getResponse();

echo $response->getBody();
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-WebRequest -Uri '{{baseUrl}}/client/register' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
  "clientName": "",
  "clientType": "",
  "scopes": []
}'
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-RestMethod -Uri '{{baseUrl}}/client/register' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
  "clientName": "",
  "clientType": "",
  "scopes": []
}'
import http.client

conn = http.client.HTTPSConnection("example.com")

payload = "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}"

headers = { 'content-type': "application/json" }

conn.request("POST", "/baseUrl/client/register", payload, headers)

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
import requests

url = "{{baseUrl}}/client/register"

payload = {
    "clientName": "",
    "clientType": "",
    "scopes": []
}
headers = {"content-type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
library(httr)

url <- "{{baseUrl}}/client/register"

payload <- "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}"

encode <- "json"

response <- VERB("POST", url, body = payload, content_type("application/json"), encode = encode)

content(response, "text")
require 'uri'
require 'net/http'

url = URI("{{baseUrl}}/client/register")

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  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}"

response = http.request(request)
puts response.read_body
require 'faraday'

conn = Faraday.new(
  url: 'https://example.com',
  headers: {'Content-Type' => 'application/json'}
)

response = conn.post('/baseUrl/client/register') do |req|
  req.body = "{\n  \"clientName\": \"\",\n  \"clientType\": \"\",\n  \"scopes\": []\n}"
end

puts response.status
puts response.body
use serde_json::json;
use reqwest;

#[tokio::main]
pub async fn main() {
    let url = "{{baseUrl}}/client/register";

    let payload = json!({
        "clientName": "",
        "clientType": "",
        "scopes": ()
    });

    let mut headers = reqwest::header::HeaderMap::new();
    headers.insert("content-type", "application/json".parse().unwrap());

    let client = reqwest::Client::new();
    let response = client.post(url)
        .headers(headers)
        .json(&payload)
        .send()
        .await;

    let results = response.unwrap()
        .json::()
        .await
        .unwrap();

    dbg!(results);
}
curl --request POST \
  --url {{baseUrl}}/client/register \
  --header 'content-type: application/json' \
  --data '{
  "clientName": "",
  "clientType": "",
  "scopes": []
}'
echo '{
  "clientName": "",
  "clientType": "",
  "scopes": []
}' |  \
  http POST {{baseUrl}}/client/register \
  content-type:application/json
wget --quiet \
  --method POST \
  --header 'content-type: application/json' \
  --body-data '{\n  "clientName": "",\n  "clientType": "",\n  "scopes": []\n}' \
  --output-document \
  - {{baseUrl}}/client/register
import Foundation

let headers = ["content-type": "application/json"]
let parameters = [
  "clientName": "",
  "clientType": "",
  "scopes": []
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/client/register")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
POST StartDeviceAuthorization
{{baseUrl}}/device_authorization
BODY json

{
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
}
Examples
REQUEST

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/device_authorization");

struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "content-type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);

curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}");

CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])

(client/post "{{baseUrl}}/device_authorization" {:content-type :json
                                                                 :form-params {:clientId ""
                                                                               :clientSecret ""
                                                                               :startUrl ""}})
require "http/client"

url = "{{baseUrl}}/device_authorization"
headers = HTTP::Headers{
  "content-type" => "application/json"
}
reqBody = "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}"

response = HTTP::Client.post url, headers: headers, body: reqBody
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
    Method = HttpMethod.Post,
    RequestUri = new Uri("{{baseUrl}}/device_authorization"),
    Content = new StringContent("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}")
    {
        Headers =
        {
            ContentType = new MediaTypeHeaderValue("application/json")
        }
    }
};
using (var response = await client.SendAsync(request))
{
    response.EnsureSuccessStatusCode();
    var body = await response.Content.ReadAsStringAsync();
    Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/device_authorization");
var request = new RestRequest("", Method.Post);
request.AddHeader("content-type", "application/json");
request.AddParameter("application/json", "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}", ParameterType.RequestBody);
var response = client.Execute(request);
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "{{baseUrl}}/device_authorization"

	payload := strings.NewReader("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\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(res)
	fmt.Println(string(body))

}
POST /baseUrl/device_authorization HTTP/1.1
Content-Type: application/json
Host: example.com
Content-Length: 60

{
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
}
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("POST", "{{baseUrl}}/device_authorization")
  .setHeader("content-type", "application/json")
  .setBody("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("{{baseUrl}}/device_authorization"))
    .header("content-type", "application/json")
    .method("POST", HttpRequest.BodyPublishers.ofString("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}"))
    .build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();

MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}");
Request request = new Request.Builder()
  .url("{{baseUrl}}/device_authorization")
  .post(body)
  .addHeader("content-type", "application/json")
  .build();

Response response = client.newCall(request).execute();
HttpResponse response = Unirest.post("{{baseUrl}}/device_authorization")
  .header("content-type", "application/json")
  .body("{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}")
  .asString();
const data = JSON.stringify({
  clientId: '',
  clientSecret: '',
  startUrl: ''
});

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener('readystatechange', function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open('POST', '{{baseUrl}}/device_authorization');
xhr.setRequestHeader('content-type', 'application/json');

xhr.send(data);
import axios from 'axios';

const options = {
  method: 'POST',
  url: '{{baseUrl}}/device_authorization',
  headers: {'content-type': 'application/json'},
  data: {clientId: '', clientSecret: '', startUrl: ''}
};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const url = '{{baseUrl}}/device_authorization';
const options = {
  method: 'POST',
  headers: {'content-type': 'application/json'},
  body: '{"clientId":"","clientSecret":"","startUrl":""}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
const settings = {
  async: true,
  crossDomain: true,
  url: '{{baseUrl}}/device_authorization',
  method: 'POST',
  headers: {
    'content-type': 'application/json'
  },
  processData: false,
  data: '{\n  "clientId": "",\n  "clientSecret": "",\n  "startUrl": ""\n}'
};

$.ajax(settings).done(function (response) {
  console.log(response);
});
val client = OkHttpClient()

val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}")
val request = Request.Builder()
  .url("{{baseUrl}}/device_authorization")
  .post(body)
  .addHeader("content-type", "application/json")
  .build()

val response = client.newCall(request).execute()
const http = require('https');

const options = {
  method: 'POST',
  hostname: 'example.com',
  port: null,
  path: '/baseUrl/device_authorization',
  headers: {
    'content-type': 'application/json'
  }
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on('data', function (chunk) {
    chunks.push(chunk);
  });

  res.on('end', function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.write(JSON.stringify({clientId: '', clientSecret: '', startUrl: ''}));
req.end();
const request = require('request');

const options = {
  method: 'POST',
  url: '{{baseUrl}}/device_authorization',
  headers: {'content-type': 'application/json'},
  body: {clientId: '', clientSecret: '', startUrl: ''},
  json: true
};

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
const unirest = require('unirest');

const req = unirest('POST', '{{baseUrl}}/device_authorization');

req.headers({
  'content-type': 'application/json'
});

req.type('json');
req.send({
  clientId: '',
  clientSecret: '',
  startUrl: ''
});

req.end(function (res) {
  if (res.error) throw new Error(res.error);

  console.log(res.body);
});
const axios = require('axios').default;

const options = {
  method: 'POST',
  url: '{{baseUrl}}/device_authorization',
  headers: {'content-type': 'application/json'},
  data: {clientId: '', clientSecret: '', startUrl: ''}
};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const fetch = require('node-fetch');

const url = '{{baseUrl}}/device_authorization';
const options = {
  method: 'POST',
  headers: {'content-type': 'application/json'},
  body: '{"clientId":"","clientSecret":"","startUrl":""}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
#import 

NSDictionary *headers = @{ @"content-type": @"application/json" };
NSDictionary *parameters = @{ @"clientId": @"",
                              @"clientSecret": @"",
                              @"startUrl": @"" };

NSData *postData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/device_authorization"]
                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                   timeoutInterval:10.0];
[request setHTTPMethod:@"POST"];
[request setAllHTTPHeaderFields:headers];
[request setHTTPBody:postData];

NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
                                                if (error) {
                                                    NSLog(@"%@", error);
                                                } else {
                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
                                                    NSLog(@"%@", httpResponse);
                                                }
                                            }];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt

let uri = Uri.of_string "{{baseUrl}}/device_authorization" in
let headers = Header.add (Header.init ()) "content-type" "application/json" in
let body = Cohttp_lwt_body.of_string "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}" in

Client.call ~headers ~body `POST uri
>>= fun (res, body_stream) ->
  (* Do stuff with the result *)
 "{{baseUrl}}/device_authorization",
  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([
    'clientId' => '',
    'clientSecret' => '',
    'startUrl' => ''
  ]),
  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;
}
request('POST', '{{baseUrl}}/device_authorization', [
  'body' => '{
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
}',
  'headers' => [
    'content-type' => 'application/json',
  ],
]);

echo $response->getBody();
setUrl('{{baseUrl}}/device_authorization');
$request->setMethod(HTTP_METH_POST);

$request->setHeaders([
  'content-type' => 'application/json'
]);

$request->setContentType('application/json');
$request->setBody(json_encode([
  'clientId' => '',
  'clientSecret' => '',
  'startUrl' => ''
]));

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
append(json_encode([
  'clientId' => '',
  'clientSecret' => '',
  'startUrl' => ''
]));
$request->setRequestUrl('{{baseUrl}}/device_authorization');
$request->setRequestMethod('POST');
$request->setBody($body);

$request->setHeaders([
  'content-type' => 'application/json'
]);

$client->enqueue($request)->send();
$response = $client->getResponse();

echo $response->getBody();
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-WebRequest -Uri '{{baseUrl}}/device_authorization' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
}'
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-RestMethod -Uri '{{baseUrl}}/device_authorization' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
}'
import http.client

conn = http.client.HTTPSConnection("example.com")

payload = "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}"

headers = { 'content-type': "application/json" }

conn.request("POST", "/baseUrl/device_authorization", payload, headers)

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
import requests

url = "{{baseUrl}}/device_authorization"

payload = {
    "clientId": "",
    "clientSecret": "",
    "startUrl": ""
}
headers = {"content-type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
library(httr)

url <- "{{baseUrl}}/device_authorization"

payload <- "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}"

encode <- "json"

response <- VERB("POST", url, body = payload, content_type("application/json"), encode = encode)

content(response, "text")
require 'uri'
require 'net/http'

url = URI("{{baseUrl}}/device_authorization")

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  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}"

response = http.request(request)
puts response.read_body
require 'faraday'

conn = Faraday.new(
  url: 'https://example.com',
  headers: {'Content-Type' => 'application/json'}
)

response = conn.post('/baseUrl/device_authorization') do |req|
  req.body = "{\n  \"clientId\": \"\",\n  \"clientSecret\": \"\",\n  \"startUrl\": \"\"\n}"
end

puts response.status
puts response.body
use serde_json::json;
use reqwest;

#[tokio::main]
pub async fn main() {
    let url = "{{baseUrl}}/device_authorization";

    let payload = json!({
        "clientId": "",
        "clientSecret": "",
        "startUrl": ""
    });

    let mut headers = reqwest::header::HeaderMap::new();
    headers.insert("content-type", "application/json".parse().unwrap());

    let client = reqwest::Client::new();
    let response = client.post(url)
        .headers(headers)
        .json(&payload)
        .send()
        .await;

    let results = response.unwrap()
        .json::()
        .await
        .unwrap();

    dbg!(results);
}
curl --request POST \
  --url {{baseUrl}}/device_authorization \
  --header 'content-type: application/json' \
  --data '{
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
}'
echo '{
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
}' |  \
  http POST {{baseUrl}}/device_authorization \
  content-type:application/json
wget --quiet \
  --method POST \
  --header 'content-type: application/json' \
  --body-data '{\n  "clientId": "",\n  "clientSecret": "",\n  "startUrl": ""\n}' \
  --output-document \
  - {{baseUrl}}/device_authorization
import Foundation

let headers = ["content-type": "application/json"]
let parameters = [
  "clientId": "",
  "clientSecret": "",
  "startUrl": ""
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/device_authorization")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()