1
使用我獲取數據:Facebook Graph API僅返回25頁,如何增加限制?
get('/me?fields=id,name,email,picture,accounts', access_token);
但它只是返回25頁,並返回一個下一個URL來獲取remainings。有沒有什麼辦法可以把limit = 100屬性放在上面的代碼中?
使用我獲取數據:Facebook Graph API僅返回25頁,如何增加限制?
get('/me?fields=id,name,email,picture,accounts', access_token);
但它只是返回25頁,並返回一個下一個URL來獲取remainings。有沒有什麼辦法可以把limit = 100屬性放在上面的代碼中?
get('/me?fields=id,name,email,picture,accounts&limit=100', access_token);
或者,更好地利用分頁:https://developers.facebook.com/docs/graph-api/using-graph-api/#paging
'/我場= ...&限= 100' ...? – CBroe