-2

我有aid权限user_photo,我想要照片的来源。所以我这样做:

select source from photo where id = ID_PHOTO

它不起作用。我应该怎么办?

4

2 回答 2

0

没有列id

我想你想要pid(用引号括起照片 id,pid 是一个字符串)

select src from photo where pid = "ID_PHOTO"

参考

编辑:

看起来 pid 也不起作用。如果 pid 不起作用,请尝试使用 object_id。

select src from photo where object_id = "ID_PHOTO"
于 2012-04-06T00:26:15.470 回答
0

您应该使用Graph API。以下是它的工作原理:

  • 获取专辑:https://graph.facebook.com/me/albums?access_token=...

  • 要获取照片:https://graph.facebook.com/me/photos?access_token=...

  • 要获取特定相册中的照片:https://graph.facebook.com/*[album_id_here]*/photos?access_token=...

于 2012-04-06T00:30:44.537 回答