Difference between revisions of "Single Sign-On for Mobile Apps"

From MgmtWiki
Jump to: navigation, search
(Created page with "* For the more general case see the wiki page Single Sign-On")
 
(References)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
* For the more general case see the wiki page  [[Single Sign-On]]
+
==Full Title or Meme==
 +
A process of [[Authentication]] of users on one site that can be applied to access other sites.
 +
 
 +
==Problems==
 +
* Cookie issues start with the loss of [[Third Party]] Cookies in Apple in 2021.
 +
 
 +
==Solutions==
 +
 
 +
===Apple iPhone===
 +
 
 +
* Embedded browser is SFSafariView Controller which, starting in 2017, will not support cookies at all.
 +
* 2018 ASWebAuthenticaion has some limited "Persistent" cookie capability but only with Safari and only on device.
 +
* iCloud Keychain works between Apple devices.
 +
 
 +
===OpenID===
 +
* [https://openid.net/specs/openid-connect-native-sso-1_0.html OpenID Connect Native SSO for Mobile Apps 1.0] (George Fletcher)
 +
session
 +
 
 +
==References==
 +
* This has large overlap the the wiki page [[Native SSO]].
 +
* For the more general case see the wiki page  [[Single Sign-On]].
 +
 
 +
[[Category: Glossary]]
 +
[[Category: Authentication]]

Latest revision as of 17:50, 17 June 2024

Full Title or Meme

A process of Authentication of users on one site that can be applied to access other sites.

Problems

  • Cookie issues start with the loss of Third Party Cookies in Apple in 2021.

Solutions

Apple iPhone

  • Embedded browser is SFSafariView Controller which, starting in 2017, will not support cookies at all.
  • 2018 ASWebAuthenticaion has some limited "Persistent" cookie capability but only with Safari and only on device.
  • iCloud Keychain works between Apple devices.

OpenID

session

References