0

We are going to migrate to the Graph API in FQL.

Using the name of the query conditions to query albumid/objectid.

FQL syntax used to do the following:


SELECT aid, object_id

FROM album

WHERE owner=0000 AND name=abcd

ORDER BY modified DESC LIMIT 1


Is it possible to implement Graph API in the same way?

4

1 回答 1

0

不,不幸的是,这是不可能的。没有可用的过滤方法。您必须查询所有专辑,然后在您的应用程序中进行过滤,然后查询album_id您选择的专辑

例如

 /me/albums?fields=id,name
于 2015-07-14T07:20:33.090 回答