5

特定のユーザー名からボード名のリストを取得する方法を探しています。pinterest は、特定のユーザーからのすべてのピンと、特定のピンボードからのすべてのピンに対して既に RSS を提供していることを知っています。

特定のユーザーからのすべてのピン: pinterest.com/[user]/feed.rss

特定のユーザーとボードからのすべてのピン: pinterest.com/[user]/[board-name]/rss

ここで、ピンではなく、特定のユーザーからボードのリストを取得する方法が必要です。私はそれを行う方法があることを知っています - > pinreach.comがそれを行います.

前もって感謝します :)

4

4 に答える 4

1

RSS フィードには 25 ピンしかありません。ボードまたはすべてのピンを取得するには、サイトをクロールする必要があります。それを回避する方法はありません。

于 2012-09-07T07:55:24.673 に答える
1

Pintrest http://pinterestapi.co.uk/のドキュメントを含む別の非公式 API を次に示します。

于 2013-06-26T07:47:00.467 に答える
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 に答える