Limitations and biases do not work for Facebook me / feed connecton

I found that if Graph Connection me / feed is used with a limit and an offset, then its returning empty json array for most limit and offset values. For instance: -

me / feed? limit = 10 & offset = 0 gives the correct data

But me / feed? limit = 10 & offset = 10 returns an empty json data array

Please help me :( thanks in advance ....

** This behavior can be reproduced using the GRAPH API Explorer tool, and I have all permissions available using the GRAPH API Explorer tool.

+4
source share
1 answer

I did similar experiments on the api plot, and I think the offset is happening in the extracted dataset. This means that when you extract only ten elements and start at the 10th offset, then zero elements will be returned. However, if the limit is greater than the offset, then some data will be returned. See Link.

0
source

All Articles