我正在寻找一种从给定用户名获取电路板名称列表的方法。我知道pinterest已经为给定用户的所有引脚和给定插板上的所有引脚提供了rs。
来自特定用户的所有引脚:pinterest.com/ [user] /feed.rss
来自特定用户和主板的所有引脚:pinterest.com/ [user] / [board-name] / rss
现在我需要一种方法来获取给定用户的电路板列表,而不是引脚。我知道有办法做到这一点因为 - > pinreach.com做到了。
提前谢谢你:)
答案 0 :(得分:1)
RSS Feed只有25个引脚。要获得电路板或所有引脚,您必须抓取该网站。没有办法解决它。
答案 1 :(得分:1)
这是另一个带有Pintrest文档的非官方API http://pinterestapi.co.uk/
答案 2 :(得分:0)
嘿,你可以查看这个非官方的Pinterest API,你可以用用户名搜索电路板 - https://www.mashape.com/ismaelc/pinterest-1#endpoint-Show-User-Boards
以下示例结果:
{
"body": [
{
"name": "Books Worth Reading",
"href": "http://pinterest.com/ismael/books-worth-reading/",
"num_of_pins": 6,
"cover_src": "http://media-cache-ec7.pinterest.com/222x/0c/31/22/0c3122735319edbf9b8aae28c9b22f86.jpg",
"thumbs_src": [
"http://media-cache-ec6.pinterest.com/75x75/2a/2d/7b/2a2d7b6f20f7518269b310b25d876810.jpg",
"http://media-cache-ec4.pinterest.com/75x75/e6/05/05/e6050519c5686ae27ad649500965f39c.jpg",
"http://media-cache-ec5.pinterest.com/75x75/07/64/c3/0764c392bae2b073c4c862a6503f09d6.jpg",
"http://media-cache-ec4.pinterest.com/75x75/61/35/0a/61350ab6eb4bb0b0d09f7c191bf30d55.jpg"
]
},
{
"name": "My Style",
"href": "http://pinterest.com/ismael/my-style/",
"num_of_pins": 0,
"cover_src": false,
"thumbs_src": false
},
{
"name": "For the Home",
"href": "http://pinterest.com/ismael/for-the-home/",
"num_of_pins": 0,
"cover_src": false,
"thumbs_src": false
},
{
"name": "Favorite Places & Spaces",
"href": "http://pinterest.com/ismael/favorite-places-spaces/",
"num_of_pins": 0,
"cover_src": false,
"thumbs_src": false
}
],
"meta": {
"count": 4
}
}
答案 3 :(得分:0)
您现在可以使用官方Pinterest API使用钩子执行此操作:
https://api.pinterest.com/v1/me/boards/?access_token=********&fields=id%2Cname%2Curl
首先,您需要进行身份验证并获取一个acce3ss令牌。 入门doc在解释方法方面做得很好。 https://developers.pinterest.com/docs/api/overview/