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.

I am making an app in android and i am badly stuck in integrating facebook.I got authenticated and I am able to post to wall via my android app. But i don't know how to make these three button working as depicted in image

  1. Friend Requests
  2. Messages
  3. Notifications

enter image description here

Any help regarding this will be appreciated..

share|improve this question
Facebook won't let you. – nOiAd Jan 14 at 7:54
why so.. I mean to say there is no library of facebook in which we can implement like this – Aditya1510 Jan 14 at 7:58
Just read all the latest notifications from facebook and count the ones that the user didn't saw – Royi Jan 14 at 8:30
i want to make all the above three , i mean is there some imported library for these.. – Aditya1510 Jan 14 at 9:10

1 Answer

up vote 4 down vote accepted

I was researching on your problem. I think you can achieve your aim by fql queries.

  1. Friend Requests
    Table name: friend_request

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

  2. Messages
    Table name: mailbox_folder

    SELECT name, unread_count, total_count FROM mailbox_folder WHERE folder_id = 0 and viewer_id = me()

  3. Notifications
    Table Name: notification

    SELECT notification_id, sender_id, title_html, body_html, href FROM notification WHERE recipient_id= AND is_unread = 1 AND is_hidden = 0 AND created_time >

See fql technical-guides

share|improve this answer
Thanks for your answer and +1 for help – Aditya1510 Jan 22 at 7:59

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.