shadab.tughlaq
shadab.tughlaq

Reputation: 464

fql is deprecated for versions v2.1 and higher

I get an error message as

fql is deprecated for versions v2.1 and higher

And facebook graph has a minimum version of 2.1. So does this mean that fql is history now.

I am trying the following FQL

SELECT attachment FROM stream WHERE post_id = "id"

Any suggestions

Upvotes: 3

Views: 5392

Answers (1)

andyrandy
andyrandy

Reputation: 74014

The FQL and REST APIs are no longer available in v2.1

Source: https://developers.facebook.com/docs/apps/changelog#v2_1

v2.0 is "Unavailable as of August 7, 2016" according to the changelog, so FQL does not work anymore. You will have to use the Graph API instead: https://developers.facebook.com/docs/graph-api/reference/v2.7/post

Upvotes: 5

Related Questions