如何获得访问令牌访问Pinterest的阿比(How to get access token for

2019-09-24 02:20发布

我用Google搜索和搜索上的计算器,但无法找到答案。

我写一个应用程序,这需要访问Pinterest的API。 这是我的github回购: https://github.com/kellan/pinterest.api.php

$p = new Pinterest_API();
$p->fetch_access_token($client_id, $client_secret, $username, $password);
$resp = $p->some_api_call($args);

但我不知道在哪里可以找到$ CLIENT_ID和$ client_secret?

Answer 1:

据我所知,Pinterest的API已经被撤下。 我甚至得到了我的Pinterest的Chrome扩展的下架通知。



Answer 2:

是的,Pinterest的API已经被撤下。 我所有的应用程序也受到影响。

这1.0版API链接现在只显示连字符,在其计数仪表

http://api.pinterest.com/v1/urls/count.json?callback=receiveCount&url=http://facebook.com

我们只能等到它的后面。 我书签您的问题,并会尝试当其回更新您。



Answer 3:

转到这里,单击生成 ,并得到一个访问令牌: https://developers.pinterest.com/tools/access_token/

例如:使用get状态: https://api.pinterest.com/v1/me/pins/?access_token=TOKEN&fields=id,creator,note&limit=2

见额外的参数和要求的文档: https://developers.pinterest.com/docs/api/overview/



文章来源: How to get access token for access Pinterest Api
标签: api pinterest