Skip to content

Instantly share code, notes, and snippets.

View narisso's full-sized avatar

Nicolas narisso

  • Santiago, Chile
View GitHub Profile
@narisso
narisso / app.js
Created November 7, 2011 13:52 — forked from appcdr/app.js
Appcelerator: Facebook photo albums sample app
(function() {
Titanium.Facebook.appid = "134793934930";
Titanium.Facebook.permissions = ['publish_stream', 'read_stream', 'user_photos', 'friends_photos'];
Titanium.Facebook.addEventListener('login', function(e) {
if(e.success) {
getAlbumCovers();
return;
} else if(e.error || e.cancelled) {