FaceBook Page Feed problem.

Hi,
I'm triying to load more than 100 feeds from a FB Page with no success, no matter the Count and Offset settings I use, I only get the same 100 results. Is there a way to retrieve all feeds from a FB Page?(I know there is a 100 limit per request)

Any hints?

Thanks in advance,

Omar Zelaya

Actually is VCL.

Fixed on VCL side.

There is a Bug on unit CloudCustomFacebook on method GetFeed on setting the "limit" on the request.

--> url := url + '&limit=' + IntToStr(Count + Offset);
changed to
--> url := url + '&limit=' + IntToStr(Count);