Guest User

Untitled

a guest
Jan 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. var win = Ti.UI.createWindow();
  2.  
  3. Titanium.Facebook.appid = "181219095251677";
  4. Titanium.Facebook.permissions = ['publish_stream', 'read_stream', 'offline_access'];
  5.  
  6. var alertDialog = Titanium.UI.createAlertDialog({
  7. title : 'Facebook',
  8. message : 'You need to login with Facebook',
  9. buttonNames : ['Login Facebook']
  10. });
  11. alertDialog.addEventListener('click', function(e) {
  12.  
  13. Titanium.Facebook.authorize();
  14.  
  15. });
  16. alertDialog.show();
  17.  
  18. win.open();
Add Comment
Please, Sign In to add comment