Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取授予应用程序权限的用户的所有照片。目前,我尝试了 Graph API 的单个和批处理请求,但它总是对结果进行分页。有没有一种无缝的方式来获取所有对象而无需跟随页面?
ps:我使用的是PHP-SDK,所以用php回答就是钱:)
I found out that giving limit=0 is solving the problem. It still generates paging object but they return empty data set. So, limit=0 returns the whole dataset in one shot.