Created
April 8, 2015 11:07
-
-
Save CrazyMORF/d6f1ad10184a820385e4 to your computer and use it in GitHub Desktop.
OwinOAuthProviders Linkedin fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Request the token | |
HttpResponseMessage tokenResponse = | |
await httpClient.GetAsync(string.Format("{0}?grant_type=authorization_code&code={1}&redirect_uri={2}&client_id={3}&client_secret={4}", | |
TokenEndpoint, code, redirectUri, Options.ClientId, Options.ClientSecret)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment