Check if the user is allowed your application on ios

I use facebook ios Sdk to connect my application to facebook. Login function

[facebook authorize:permissions delegate:self]; 

calls delegate

 - (void)fbDidLogin 

but I would like to know when the user first allowed the application.

This is a message about reaching the Game Center when the user first logs in to the application on facebook.

+4
source share
1 answer

The Graph API does not tell you whether this was the first time or to have similar date information. You track this on your phone keychains or you can track user history on your own server.

+1
source

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


All Articles