Я новичок в appcelerator titanium, я создал мобильный проект, попробовал следующий код для подключения к Facebook:
Titanium.Facebook.appid = '[my appid]';
Titanium.Facebook.permissions = ['publish_stream'];
Titanium.Facebook.addEventListener('login', function(e) {
if (e.success) {
alert('Logged in');
}
});
Titanium.Facebook.addEventListener('logout', function(e) {
alert('Logged out');
});
// add the button. Note that it doesn't need a click event or anything.
Titanium.UI.currentWindow.add(Titanium.Facebook.createLoginButton({ top: 50, style: 'wide' }));
Мне не удалось закрыть веб-просмотр Facebook и вернуться к своему приложению.Кто-нибудь может мне помочь в этом?
заранее спасибо