简体   繁体   中英

Get Active Albums in Facebook Using FQL Query

I'm using the Below Query to retrieve the Album Names and album id,

    SELECT aid,name FROM album WHERE owner = me()

But in these fql query it retrieve all albums Name. But some of the albums doesn't have photos and also it retrieve the deleted albums. I dont want the ablum doesn't have photos and inactive.

So Please guide me how to retrieve in fql Query ?

要仅获取实际包含照片的相册,请在WHERE子句中添加AND photo_count > 0

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM