Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Last active August 29, 2015 14:16
Show Gist options
  • Save bryceadams/bfe84f1985f9c79b9ddc to your computer and use it in GitHub Desktop.
Save bryceadams/bfe84f1985f9c79b9ddc to your computer and use it in GitHub Desktop.
Example usage of scopes in FB.login Facebook JavaScript SDK
function fblogin() {
FB.login(function (response) {
checkLoginState();
}, {scope: 'public_profile,email,user_website,user_education_history,user_work_history,user_location,user_about_me'});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment