我有aid
权限user_photo
,我想要照片的来源。所以我这样做:
select source from photo where id = ID_PHOTO
它不起作用。我应该怎么办?
我有aid
权限user_photo
,我想要照片的来源。所以我这样做:
select source from photo where id = ID_PHOTO
它不起作用。我应该怎么办?
没有列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"
您应该使用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=...