SFAuthenticationSessionHandler
public class SFAuthenticationSessionHandler: OnlineAuthenticationHandler
Uses SFAuthenticationSession (available in iOS 11) to handle authentication, then uses UAACodeExchangeAuthenticationHandler
to exchange the retrieved authorization code for authentication and refresh tokens.
-
Declaration
Swift
public override var authenticationResponsePayload: [String: Any]
-
An
AuthenticationHandler
for refreshing a prior authentication, usually via a Oauth2 refresh token.See also:
RefreshAuthenticationHandler
Declaration
Swift
public override var refreshAuthenticationHandler: RefreshAuthenticationHandler?
-
The
AuthenticationManager
controlling this AuthenticationHandlerDeclaration
Swift
public override weak var manager: AuthenticationManager?
-
The authentication path used to perform the Oauth2 login process, or for web-based login configurations, the path to the login page.
Declaration
Swift
public override var loginURLPath: String
-
The authentication path used to log the user out and remove the current user session.
Declaration
Swift
public override var logoutURLPath: String
-
Declaration
Swift
public override weak var authenticationUIDelegate: AuthenticationHandlerUIDelegate?
-
Initializes and returns a SFAuthenticationSessionHandler object with the provided parameters
Declaration
Swift
public init(redirectURI: String)
Parameters
redirectURI
URI of the redirect used to indicate the browser-based Oauth2 authentication flow has completed successfully. The URL Scheme must be setup in the Application’s URL Types.
-
Declaration
Swift
public override func authenticate(completionHandler: @escaping (AuthenticationHandler.AuthenticateResult) -> Void)
-
Declaration
Swift
open override func cancelAuthentication()
-
Declaration
Swift
open override func logout(completionHandler: @escaping () -> Void)
-
Declaration
Swift
public func authenticationHandler(_ authenticationHandler: AuthenticationHandler, loadWebAuthenticationUrl url: URL, shouldFollowRedirect: @escaping (URL) -> (Bool))