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.

But if i want to check that how many people did i sent friend notification?

I tried The fql query

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

But it's showing me received requested friend list.

After that i tried:

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

but it was showing index search error.

When i searched

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

then it returned me result.

Can anyone give me the solution in FQL query or would be good if any graph.api is available for this. Kindly provide me tested solution.

share|improve this question

1 Answer

up vote 0 down vote accepted

No, there is no way to list all outbound friend requests, you need to store the user IDs in order to check the status of a sent request, or you can list all incoming 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.