1

我正在尝试使用 Graph API 从我在 facebook 上的相册中提取图像,并且我能够这样做。

使用通话 - graph.facebook.com/albumID/photos

上面的调用响应了我需要的所有数据,并响应了各种大小的所有图像的 URL:

 {
      "picture": "URL Here",
      "source": "URL Here",
      "height": 540,
      "width": 720,
      "images": [
        {
          "height": 972,
          "width": 1296,
          "source": "URL Here"
        },
        {
          "height": 720,
          "width": 960,
          "source": "URL Here"
        },
        {
          "height": 540,
          "width": 720,
          "source": "URL Here"
        },
        {
          "height": 450,
          "width": 600,
          "source": "URL Here"
        },
        {
          "height": 360,
          "width": 480,
          "source": "URL Here"
        },
        {
          "height": 240,
          "width": 320,
          "source": "URL Here"
        },
        {
          "height": 135,
          "width": 180,
          "source": "URL Here"
        },
        {
          "height": 97,
          "width": 130,
          "source": "URL Here"
        },
        {
          "height": 97,
          "width": 130,
          "source": "URL Here"
        }
      ],

有没有一种方法可以让我获得我想要的大小的相册中的图像?例如:150x120 或 190x210 等。

谢谢,雷诺琼斯

4

1 回答 1

1

有没有一种方法可以让我获得我想要的大小的相册中的图像?例如:150x120 或 190x210 等。

,这是不可能的。您必须使用 Facebook 提供的其中一张照片。

于 2012-11-25T09:16:12.090 回答