Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run Facebook FQL Online

Where can I run FQL queries online in my web browser?

like image 527
Lennie De Villiers Avatar asked May 29 '10 12:05

Lennie De Villiers


People also ask

Does Facebook have a public API?

With the Facebook API, you can access and read public data for Facebook Pages that you are not the admin of. This data, including business metadata, public comments, and posts, can be used for competitive analysis and benchmarking.


1 Answers

Where can I run FQL queries online in my web browser?

In Facebook Developers Graph Explorer Tool, in this format (using a simple example):

https://graph.facebook.com/fql?q=SELECT uid,name FROM user WHERE uid = me()

Update:

Graph Explorer now has a dedicated FQL query window. Press the FQL button and enter your query as:

SELECT uid,name FROM user WHERE uid = me()
like image 147
onosendai Avatar answered Sep 29 '22 05:09

onosendai