As of December 2011, Facebook changed their API and broke everyone's FB.login. The following code will no longer work:
FB.login(
function(response) {
if (response.session) {
console.info('you logged in');
if (response.perms) {
console.info('you granted some permissions');
}
}
}, {
perms: 'publish_stream'
}
);
Instead you have to do this:
FB.login(
function(response) {
if (response.authResponse) {
console.info('you are logged in', response);
}
}, {
scope: 'publish_stream'
}
);
This at least makes login work, but I'm no longer able to see if they accepted my requested permission or not. When I log out the response, it does not contain a "perms" key anymore:
response: {
authResponse {
accessToken: string,
expiresIn: number,
signedRequest: string,
userID: string
},
status
}