gpt4 book ai didi

php - 如何从 pinterest 获取所有图钉?仅获得 50 个引脚

转载 作者:行者123 更新时间:2023-12-03 21:29:47 25 4
gpt4 key购买 nike

使用此代码我一次只能获得前 50 个图钉

https://api.pinterest.com/v3/pidgets/users/lorihiney/pins/

有什么方法可以获取特定用户的所有图钉。

最佳答案

我在尝试使用 API 时也遇到了这个问题,这让我抓狂!!

我最终使用我在网上找到的信息创建了一个递归函数来获取板的所有子页面,同时还将引脚推送到一个数组。

我首先将所有电路板保存到一个 MYSQL 表中,然后将引脚保存到另一个表中。节省 API 调用并使查找重复项变得更加容易(这就是我尝试使用它的目的)!

$pins=array();

function findchildren(&$array, $i){
global $pins;

if (true == $i){return;}

foreach($array as $k=>$v){
array_push($pins, $v['data']);
if(!empty($v['page']['next'])){
$newar = curlfunction($v['page']['next']);
findchildren($newar, false);
}
}
}

所以像这样:

$board = curlfunction('https://api.pinterest.com/v1/boards/lorihiney/diet/pins/?access_token=xxxxx&limit=100&fields=id,link,counts,note,url,image');
findchildren($board, false);

您只需要创建 cURL 函数来获取数据!!

我的 Pinterest 帐户有 31 个图板和 1890 个图钉。在花了 AGES 试图弄明白之后,这对我来说是一种享受。希望能有所帮助。

关于php - 如何从 pinterest 获取所有图钉?仅获得 50 个引脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34036838/

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