Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Is there anyone who could tell me how to use the refresh token to get a new token. I've read through the AAD documentation on the subject, But all I get is: "AADSTS50012: Invalid client secret is provided."
I've had success with this:
using Microsoft.IdentityModel.Clients.ActiveDirectory;
public void Refresh(string authorityUri, string ClientID, string ClientSecret, string RefreshToken)
{
TokenCache TC = new TokenCache();
AuthenticationContext AC = new AuthenticationContext(authorityUri, TC);
ClientCredential cc = new ClientCredential(ClientID, ClientSecret);
AuthenticationResult AR = AC.AcquireTokenByRefreshToken(RefreshToken, cc));
}
} // my initial post didn't include the final curly bracket.
User | Count |
---|---|
10 | |
5 | |
4 | |
4 | |
3 |
User | Count |
---|---|
14 | |
9 | |
5 | |
5 | |
4 |