Я пытаюсь получить токен из конечной точки, используя приведенный ниже код.
var bodyContents = new Dictionary<string, string>
{
{ "grant_type", "client_credentials" },
{ "userName", "loremipsum" },
{ "password", "xxxxxxx"},
{ "scope", "read_rulesengine write_rulesengine" }
};
string responseContents = string.Empty;
var client = new HttpClient();
client.BaseAddress = new Uri("https://test-sts-dev.test.com");
var req = new HttpRequestMessage(HttpMethod.Post, "/oauth/ls/connect/token");
req.Content = new FormUrlEncodedContent(bodyContents);
var postResponse = await client.SendAsync(req);
postResponse.EnsureSuccessStatusCode();
if (!postResponse.IsSuccessStatusCode)
throw new HttpRequestException("Access denied by token issuer. Check credentials in <encryptedSettings> of config file and try again.");
responseContents = postResponse.Content.ReadAsStringAsync().Result;
var responseObject = JObject.Parse(responseContents);
return responseObject.Value<string>("access_token");
Теперь я думаю, что все делаю правильно, но в ответ я получаю BadRequest
Ниже приведен ответ, который я получаю:
{Method: POST, RequestUri: 'https://test-sts-dev.test.com/oauth/ls/connect/token', Version: 1.1, Content: System.Net.Http.FormUrlEncodedContent, Headers:
{
Content-Type: application/x-www-form-urlencoded
Content-Length: 125
}}