I\'m quite new to the Facebook C# SDK (5.0.3) which probablly is the reason for this question.
Basically, I\'m trying to get the current users profile, email, photo, etc etc. B
In both the code request and access token request the redirect_uri must be the same, this will fix the OAuthException in the end. My code is now something like:
...
if (result.IsSuccess)
{
var tokenresult = cl.ExchangeCodeForAccessToken(result.Code, new Dictionary { { "redirect_uri", "" } });
}
...