File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
articles/cloud-services-extended-support Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ To deploy Cloud Services (extended support) by using the SDK:
37
37
var authenticationContext = new AuthenticationContext (" https://login.windows.net/{tenantID}" );
38
38
var credential = new ClientCredential (clientId : " {clientID}" , clientSecret : " {clientSecret}" );
39
39
var result = authenticationContext .AcquireTokenAsync (resource : " https://management.core.windows.net/" , clientCredential : credential );
40
- if (result == null ) throw new InvalidOperationException (" Failed to obtain the JWT token " );
40
+ if (result == null ) throw new InvalidOperationException (" Failed to obtain the JWT" );
41
41
AuthenticationToken = result .Result .AccessToken ;
42
42
}
43
43
public override async Task ProcessHttpRequestAsync (HttpRequestMessage request , CancellationToken cancellationToken )
You can’t perform that action at this time.
0 commit comments