gpt4 book ai didi

php - 如何在新的 Facebook PHP SDK 4 中使用 paging next

转载 作者:行者123 更新时间:2023-12-02 07:26:26 26 4
gpt4 key购买 nike

我正在使用新的 Facebook PHP SDK。我试图获取用户喜欢的所有页面的名称。但它只返回我其中的 25 个。据我所知,如果我必须获得所有这些,那么我将不得不使用“graphObject”返回的“分页”中的“下一个链接”。

但我不知道如何使用它。如果我错了,你能指出我该怎么做吗?

最佳答案

我在 php 中这样做是为了获得所有的赞:

public function getLikes () {

$likes = array();

// Custom method! Get the session however you like
$session = $this->getSession();

$request = new FacebookRequest(
$session,
'GET',
'/me/likes'
);

do {
$response = $request->execute();
$graphObject = $response->getGraphObject();
$some_likes = $graphObject->getProperty('data')->asArray();
$likes = array_merge($likes, $some_likes);
} while ($request = $response->getRequestForNextPage());

return $likes;
}

如您所见,getRequestForNextPage() 方法是关键。

关于php - 如何在新的 Facebook PHP SDK 4 中使用 paging next,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28230895/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com