How to get feeds of a Page (TAdvFacebook)

Hi,


I used GetPages and PageList.Items to see the Pages available. How can I get the Feeds, likes, etc from a Page ?

Thanks.

Try:

var
  Profile: TFacebookProfile;
begin
  Profile := TFacebookProfile.Create;
  AdvFaceBook.GetProfile(page.ID, Profile);
  AdvFaceBook.GetFeed(Profile);
  for i := 0 to Profile.Feed.Count - 1 do 
  // get feed info here
end;