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.

Is there any method such as graph API or fql for tracking pending friend requests in facebook profile

share|improve this question
You are going to need to be a little more specific. Are you wanting to track invites that went out? Read pending invites? Also good to note that an application can only deal with requests for THAT application. You cant have one application tampering with another applications invites. – Lix Jan 13 '12 at 8:05
i want to track the count of pending friend requests appeared in my facebook profile using an facebook application either via using fql or graph api or sdk – Suj Jan 16 '12 at 5:52

1 Answer

The fql query

SELECT uid_from, time, message FROM friend_request WHERE uid_to = me()

will return a current list of all pending friend requests

share|improve this answer

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.