我有一个网站,我希望在给定pinterest用户的最新主板上显示4个引脚(实际上始终是同一个用户)。
计划使用Pinterest API。我阅读了所有Pinterest API文档,并在网上搜索过,似乎网站访问者需要以某种方式授权或登录Pinterest,这是我真正不想要的(根据此{{3} })。我只是希望用户看到图像...
任何解决方案?基本上,我只想按日期和用户名获取电路板,并从该电路板上取一些引脚。
感谢。
答案 0 :(得分:0)
使用NodeJS并知道电路板名称,您可以:
va PDK = require(' node-pinterest')
,pinterest = PDK.init(your_pinterest_token)
pinterest.api(' boards /' + board +' / pins',{qs:{fields:' id,created_at,note}})。then(function(结果){
// console.log(结果)
})
答案 1 :(得分:0)
使用此代码非常简单
getPinterestData(boardName) {
let access_token = 'xxxxxxxxxxxxxxxxxxxxx-zSul0atEQt2fi6A-iwAAAAA';
return this.http.get('https://api.pinterest.com/v1/boards/myboardNamme/'+ boardName +'/pins/?access_token='+ access_token +'&fields=id%2Cnote%2Cimage')
.map((res: Response) =>
res.json())
.catch((error: any) =>
Observable.throw(error.json().error || 'Server error'));
}