I'm using facebook sdk v6.4.2. but api version 2.1, I get the error when i use fql :/ Error : fql is deprecated for versions v2.1 and higher
I want to use the low version : 2.0
Thanks
I'm using facebook sdk v6.4.2. but api version 2.1, I get the error when i use fql :/ Error : fql is deprecated for versions v2.1 and higher
I want to use the low version : 2.0
Thanks
There's aguide for using versionned Graph API calls at https://developers.facebook.com/docs/graph-api/quickstart/v2.1#versions
If you're even able to execute calls to older versions of the Graph API is determined by the creation date of the app you're using. Have a look at my answer here:
Query Facebook for what version of the Graph API is being used / can be used
If you go to Class definition for FacebookClient you can find Version property. So, create new FacebookClient and set Version:
var client = new FacebookClient();
client.Version = "2.1";