Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get friend list who have not authorized my application yet? I want to send invites to them.

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

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())

share|improve this answer
Hi dang can you confirm if this has worked for you :) – Angad Dec 31 '12 at 8:45
Yep, it worked. Thanks! – dang Jan 1 at 10:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.