Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i find out facebook API version

I have an app id and secret of a facebook app. But I am not owner, how can I find out its app version?

I tried to go through fb graph api document but it did not work.

like image 939
Tuna Avatar asked Dec 26 '15 01:12

Tuna


People also ask

How do I change my Facebook API version?

In the App Dashboard Settings > Advanced, scroll to the Upgrade API Version section.

Is there API for Facebook?

What is the Facebook API? The Facebook Graph API is an HTTP-based API that allows developers to extract data and functionality from the Facebook platform. Applications can use this API to programmatically query data, post in pages and groups, and manage ads, among other tasks.

Is Facebook Graph API deprecated?

API Version Deprecations: As part of Facebook's Graph API and Marketing API, please note the upcoming deprecations: August 3, 2021: Graph API v3. 3 will be deprecated and removed from the platform. August 25, 2021 Marketing API v9.

Is Facebook API a REST API?

Yes, it is a REST API as well. Show activity on this post. Yes, there have been 3 Facebook API's to date: Legacy REST.


1 Answers

According to a somewhat relatable FAQ, you can check the facebook-api-version header in the response to determine the API version that had been used to process the request.

Currently (as of December 26, 2015), the oldest active version is 2.0, so any unversioned calls will use the 2.0 API (until August 2016). The changelog can be found here

like image 197
Chris Forrence Avatar answered Oct 22 '22 18:10

Chris Forrence