我正在寻找一种从给定用户名获取板名列表的方法。我知道pinterest已经为来自给定用户的所有引脚和来自给定插板的所有引脚提供了rss。
来自给定用户的所有Pins : pinterest.com/user/feed.rss
来自给定用户和主板的所有引脚: pinterest.com/ user /board-name/rss
现在我需要一种方法来从给定的用户那里获得电路板的列表,而不是引脚。我知道有一种方法可以做到这一点,因为-> pinreach.com做到了。
提前感谢您:)
发布于 2012-09-07 15:55:25
RSS源只有25个引脚。要获得电路板或所有的引脚,你必须爬行网站。这是无计可施的。
发布于 2013-06-26 15:47:00
这是另一个包含Pintrest http://pinterestapi.co.uk/文档的非官方API
发布于 2013-03-16 05:34:55
嘿,你可以看看这个非官方的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
}
}https://stackoverflow.com/questions/12079973
复制相似问题