aboutsummaryrefslogtreecommitdiffstats
path: root/Resources/friendship/config/config.js
diff options
context:
space:
mode:
authorTeddy Wing2012-07-29 17:47:24 -0400
committerTeddy Wing2012-07-29 17:47:24 -0400
commit6425c817f02d7cb99b83f173237ca5d8adaac92a (patch)
tree97a1063d929f0ae0d2c37d643bbea59d19c212ea /Resources/friendship/config/config.js
parentcfaf82372e1f6efd86fdc6771d242ceaed53a703 (diff)
downloadLikeFeed-6425c817f02d7cb99b83f173237ca5d8adaac92a.tar.bz2
In order to FQL likes from our friends, we need to get permission from the current Facebook user to get their friends' likes. There is another permission token called 'user_likes' for the likes of the current user, but I don't think we need that. Now looking into FB permissions, I'm not sure we need 'publish_stream', but we can discuss.
Diffstat (limited to 'Resources/friendship/config/config.js')
-rw-r--r--Resources/friendship/config/config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Resources/friendship/config/config.js b/Resources/friendship/config/config.js
index dc86a0e..eb54513 100644
--- a/Resources/friendship/config/config.js
+++ b/Resources/friendship/config/config.js
@@ -1,5 +1,5 @@
(function() {
// Facebook
Titanium.Facebook.appid = '258369447595838';
- Titanium.Facebook.permissions = ['publish_stream'];
+ Titanium.Facebook.permissions = ['publish_stream', 'friends_likes'];
})();