I am developing an iOS app. In this app I need to get information from a Facebook Group.
Using the URL directly works fine. I get a complete data set of status messages.
https://graph.facebook.com/2389876494501676/feed?access_token=TOKEN HEREBut using the Appcelerator Facebook module just returns an empty data set.
Titanium.Facebook.requestWithGraphPath('2389876494501676/feed', {}, 'GET', function(e) { Ti.API.info(e); });