TAdvFacebook.GetFeed not working

I've been using TAdvFacebook.GetFeed to get the public feed from any Facebook, using his UID, like this:


    myFBProfile := TFacebookProfile.Create;
    facebook_component.GetProfileInfo(some_uid, myFBProfile);
    facebook_component.GetFeed(myFBProfile);
    for i := 0 to myFBProfile.Feed.Count - 1 do
    (...)

This was working for sometime, but has stopped working recently. I've tried adding the "user_posts" scope:

    facebook_component.Scopes.Add('user_posts');

But still no success. I get no errors, just zero content, always. What has changed?

Thanks

Hi,


This issue is most likely related to recent changes in the Facebook API.
It is now required that the profile you are requesting the feed for is also authenticated with your Facebook App and has authorized the "user_posts" scope.

More information can be found here:
https://developers.facebook.com/docs/graph-api/reference/v2.3/user/feed