diff options
| author | Teddy Wing | 2012-07-29 17:47:24 -0400 |
|---|---|---|
| committer | Teddy Wing | 2012-07-29 17:47:24 -0400 |
| commit | 6425c817f02d7cb99b83f173237ca5d8adaac92a (patch) | |
| tree | 97a1063d929f0ae0d2c37d643bbea59d19c212ea | |
| parent | cfaf82372e1f6efd86fdc6771d242ceaed53a703 (diff) | |
| download | LikeFeed-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.
| -rw-r--r-- | Resources/friendship/config/config.js | 2 |
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']; })(); |
