Skip to content

Commit 0f71b32

Browse files
committed
fix: fix name for CP4DTokenResponse
1 parent 9d8e7ef commit 0f71b32

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Authentication/CloudPakForData/CloudPakForTokenResponse.cs renamed to Authentication/CloudPakForData/CloudPakForDataTokenResponse.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
*/
1717

18-
1918
using Newtonsoft.Json;
2019
using System;
2120
using System.Collections.Generic;

Authentication/Iam/IamAuthenticator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ bool RequestToken(Callback<IamTokenResponse> callback)
192192
req.Headers.Add("Content-type", "application/x-www-form-urlencoded");
193193
req.Headers.Add("Authorization", Utility.CreateAuthorization(clientId, clientSecret));
194194
req.OnResponse = OnRequestIamTokenResponse;
195-
req.DisableSslVerification = false;
195+
req.DisableSslVerification = DisableSslVerification;
196196
req.Forms = new Dictionary<string, RESTConnector.Form>();
197197
req.Forms[GrantType] = new RESTConnector.Form(RequestGrantType);
198198
req.Forms[ApikeyConst] = new RESTConnector.Form(Apikey);

0 commit comments

Comments
 (0)