using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
var requestData = new Dictionary<string, string>
{ "client_id", clientId },
{ "client_secret", clientSecret },
{ "grant_type", "client_credentials" },
var content = new FormUrlEncodedContent(requestData);
var response = await _httpClient.PostAsync("/connect/token", content);