Guest User

Untitled

a guest
Jul 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. FB.api(
  2. {
  3. method: 'fql.query',
  4. query: 'SELECT uid FROM permissions WHERE email = 1 AND uid = me()',
  5. },
  6. function(response) {
  7. if(response.uid != 'undefined') {
  8. console.log("User has permission.");
  9. } else {
  10. console.log("User does not have permission.");
  11. }
  12. }
  13. );
Add Comment
Please, Sign In to add comment