I m using facebook SDK v3.11.1, and I have 2 facebook applications (on facebbok), each one has app ID.
I change the default app ID programmatically:
[FBSettings setDefaultAppID:<my_app_id>];
and then I invoke openActiveSessionWithReadPermissions
, the facebook ask for permission to the relevant application.
After that i try to change the default app ID (same code as above) at the same session, and the facebook doesn't ask or permissions.
Should I close the old session, change the default app ID and reopen a new session?
Thanks in advance.