Skip to content

Instantly share code, notes, and snippets.

@CrazyMORF
Created April 8, 2015 11:07
Show Gist options
  • Save CrazyMORF/d6f1ad10184a820385e4 to your computer and use it in GitHub Desktop.
Save CrazyMORF/d6f1ad10184a820385e4 to your computer and use it in GitHub Desktop.
OwinOAuthProviders Linkedin fix
// 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