How can I get friend list who have not authorized my application yet? I want to send invites to them.
Thanks.
|
How can I get friend list who have not authorized my application yet? I want to send invites to them. Thanks. |
|||
|
|
|
I think I got the answer. Here is the query: SELECT uid, name, pic_square FROM user WHERE is_app_user=0 AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) |
|||