ADAL: sharing access token between apps on iOS -


is possible share adal access , refresh token 2 or more apps on ios? i've seen post on android this, not sure if possible on ios.

my guess is shared via shared pasteboard, require apps signed same teamid. this, need set same userid, or else required?

you can share tokens between apps same developer. so, if user has installed 2 apps developed , log in using first, second app can access token. app developer cannot access token app , user prompted log in again.

the tokens shared through keychain group. instructions on adalios github page in summary are:

  • click on project in navigator pane in xcode.
  • click on application target , "capabilities" tab.
  • scroll down "keychain sharing" , flip switch on.
  • add com.microsoft.adalcache keychain sharing list.

Comments