Connect Android Facebook

In one example of applications from Facebook for Android, I have one java file (Session), some variables, such as TOKEN, EXPIRES, KEY, UID, NAME, APP_ID. On the Facebook developers webpage in My Apps, I have an application identifier, API key, and application secret. Where do I need to specify the application identifier, where are the API Key and Where App Secret? (Sorry for my English)

+4
source share
1 answer

To communicate with Facebook using your application, you need to create a new Facebook object, passing in the application ID, as a parameter for the constructor. To do this, you do not need to use the API key or the application secret in your code.

+1
source

Source: https://habr.com/ru/post/1342370/


All Articles