I just upgrated from the old facebook sdk to the new Facebook C# SDK 5.0.25 (RTW). I'm doing a simple login to my site with some exteded permissions such as email,read_stream,publish_stream,offline_access.
Everything works fine until I check for a permission: if (fbWebContext.HasPermission("email"))... When I do that I get : Facebook.FacebookOAuthException: (190) Invalid OAuth access token signature.
Are you facing that problem?
The following is the code that I'm using:
JS:
FB.login(function (response) {
if (response.session) {
if (response.perms) {
// user is logged in and granted some permissions.
// perms is a comma separated list of granted permissions
} else {
// user is logged in, but did not grant any permissions
}
window.location.reload();
} else {
// user is not logged in
}
}, { perms: 'email,read_stream,publish_stream,offline_access' });
C#:
var fbWebContext = FacebookWebContext.Current;
if (fbWebContext.IsAuthorized())
{
var permissions = new FacebookWebAuthorizer(fbWebContext).Permissions;
if (fbWebContext.HasPermission("email")) ...
Is there something wrong with this approach?
Thanks