Having trouble with the Facebook connection using Titanium.
When I send a request to Facebook using Graph API, I only receive an empty result:
SUCCESS; {"data":[]}
This is the code I'm using:
Ti.App.fb.requestWithGraphPath('me/friends', false, 'GET', showRequestResult);
I've also attempted to use the request example from KitchenSink, but it's not working because the method is configured for my FB SDK.
I tried updating the permissions for Facebook with "user_friends," but even after logging in, it didn't prompt for this permission.
Any suggestions or ideas? Thank you for your assistance.