15

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

rudolf_franek
  • 1,795
  • 3
  • 28
  • 41
Lennie De Villiers
  • 751
  • 2
  • 9
  • 12

7 Answers7

19

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()
Gunnar Karlsson
  • 28,350
  • 10
  • 68
  • 71
  • It returns: `{"data": []}`. EDIT: Now you need to request access token and choose which permissions you need. Insufficient permissions will results in no data without any warning. – mirelon Nov 28 '13 at 15:37
5

go to https://developers.facebook.com/tools/explorer and click the "FQL Query" button.

Chadams
  • 1,833
  • 1
  • 18
  • 15
4

Here's the Facebook's official page with developer tools. There used to be an FQL console there, but it's no longer available. You can use the tools there to test other FB API though.

Edit: For an actual FQL test console, you can take a look at this. It's not online like you wanted, but it's the next best thing that I could find when I went looking.

ivans
  • 1,465
  • 10
  • 13
2

Here's a nice online form: https://developers.facebook.com/docs/reference/rest/fql.multiquery/

Aneil Mallavarapu
  • 3,485
  • 5
  • 37
  • 41
1

query and multiquery -- on either page, scroll down to find the Test Console

gonga
  • 301
  • 3
  • 5
0

FQL and Graph API explorers: https://developers.facebook.com/tools/explorer

Just click the FQL option if you want to test FQL. Works wonderfully.

StephenPAdams
  • 2,797
  • 2
  • 30
  • 49
0

FQL is deprecated for versions v2.1 and higher and no longer available

Awanish Kumar
  • 640
  • 8
  • 15