Open Graph Search - How to post custom actions so Facebook users find them through a new schedule search

I am developing an Open Graph Facebook application that is still in sandbox mode. My experienced users, who are my friends, have sent many applications using the application, and I see them on the chart when I request using https://graph.facebook.com/me/friends?fields=<namespace>:<action>. My goal is to make these user actions and the objects that they are associated with visible, through a new search on Facebook.

I can not find a way through a new graph search to view the same actions or objects. Do you have an idea what the search text should be or what should I do in my application to make them visible?

+5
source share
2 answers

I recently studied the same thing. My end result was that the available actions / verbs available through the normal graphical search interface are limited to what facebook provides. I did not find a way to show my user actions / verbs.

+2
source

Try FQL:

https://graph.facebook.com/fql?q=SELECT uid, name FROM user WHERE uid IN (SELECT uid1 FROM friend WHERE uid2 = me() ) AND is_app_user&access_token=|ACCES_TOKEN|

It will list all your friends who use your application.

-2
source

All Articles