RestSharpを使用してAPIを呼び出すと、次のエラーが発生します。
基になる接続が閉じられました:送信で予期しないエラーが発生しました。
クライアントID、シークレット、ユーザー名、パスワードが正しいことを確認しました。 PowerShellで問題なくこれを行うことができます。
public string GetTokenForBrightIdea()
{
RestClient restclient = new RestClient(_uri);
RestRequest request = new RestRequest() { Method = Method.POST };
request.AddHeader("Accept", "application/json");
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddParameter("grant_type", "password");
request.AddParameter("client_id", _clientId);
request.AddParameter("client_secret", _clientSecret);
request.AddParameter("username", _clientUsername);
request.AddParameter("password", _clientPassword);
var tResponse = restclient.Execute(request);
var responseJson = tResponse.Content;
return JsonConvert.DeserializeObject<Dictionary<string, object>>(
responseJson)["access_token"].ToString();
}
RestSharpを使用してこれを機能させると、何が欠けますか?
つまり、この呼び出しはHTTPSだったので、次のコード行を追加する必要がありました。
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
.Net 3.5および4.0の場合、RestSharpクライアントの初期化の前に次のコード行を配置してみることができます。
ServicePointManager.SecurityProtocol = (SecurityProtocolType)768 | (SecurityProtocolType)3072;
これは私にとってはうまくいきました:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12;