5

我正在寻找一种从给定用户名中获取董事会名称列表的方法。我知道 pinterest 已经为给定用户的所有 pin 和给定 pinboard 的所有 pin 提供了 rss。

来自给定用户的所有 Pin 图:pinterest.com/[user]/feed.rss

来自给定用户和董事会的所有引脚:pinterest.com/[user]/[board-name]/rss

现在我需要一种方法来获取给定用户的板列表,而不是引脚。我知道有办法做到这一点,因为 -> pinreach.com 做到了。

先感谢您 :)

4

4 回答 4

1

这是另一个带有 Pintrest 文档的非官方 API http://pinterestapi.co.uk/

于 2013-06-26T07:47:00.467 回答
1

RSS 提要只有 25 个针脚。要获得板或所有图钉,您必须爬网该站点。没有其他办法了。

于 2012-09-07T07:55:24.673 回答
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
  }
}
于 2013-03-15T21:34:54.740 回答
0

您现在可以使用官方 Pinterest API 使用钩子来执行此操作: https://api.pinterest.com/v1/me/boards/?access_token=********&fields=id%2Cname%2Curl

首先,您需要进行身份验证并获得一个 access3ss 令牌。入门文档很好地解释了如何。https://developers.pinterest.com/docs/api/overview/

于 2017-07-28T18:05:26.033 回答