MSALNativeAuthPublicClientApplication
@objcMembers
public final class MSALNativeAuthPublicClientApplication : MSALPublicClientApplication
Main interface to interact with the Native Auth methods
To create an instance of the MSALNativeAuthPublicClientApplication use the clientId, tenantSubdomain, challengeTypes and redirectUri (optional) to the initialiser method.
For example:
do { nativeAuth = try MSALNativeAuthPublicClientApplication( clientId: "Enter_the_Application_Id_Here", tenantSubdomain: "Enter_the_Tenant_Subdomain_Here", challengeTypes: [.OOB] ) print("Initialised Native Auth successfully.") } catch { print("Unable to initialize MSAL \(error)") }
-
Initialize a MSALNativePublicClientApplication with a given configuration and challenge types
Throws
An error that occurred creating the application objectDeclaration
Swift
public init( configuration config: MSALPublicClientApplicationConfig, challengeTypes: MSALNativeAuthChallengeTypes) throws
Parameters
config
Configuration for PublicClientApplication
challengeTypes
The set of capabilities that this application can support as an
MSALNativeAuthChallengeTypes
optionset -
Initialize a MSALNativePublicClientApplication.
Throws
An error that occurred creating the application objectDeclaration
Swift
public init( clientId: String, tenantSubdomain: String, challengeTypes: MSALNativeAuthChallengeTypes, redirectUri: String? = nil) throws
Parameters
clientId
The client ID of the application, this should come from the app developer portal.
tenantSubdomain
The subdomain of the tenant, this should come from the app developer portal.
challengeTypes
The set of capabilities that this application can support as an
MSALNativeAuthChallengeTypes
optionsetredirectUri
Optional. The redirect URI for the application, this should come from the app developer portal.
-
Sign up a user using parameters.
Declaration
Swift
public func signUp( parameters: MSALNativeAuthSignUpParameters, delegate: SignUpStartDelegate )
Parameters
parameters
Parameters used for the Sign Up flow.
delegate
Delegate that receives callbacks for the Sign Up flow.
-
Sign in a user using parameters.
Declaration
Swift
public func signIn( parameters: MSALNativeAuthSignInParameters, delegate: SignInStartDelegate )
Parameters
parameters
Parameters used for the Sign In flow.
delegate
Delegate that receives callbacks for the Sign In flow.
-
Reset the password using parameters
Declaration
Swift
public func resetPassword( parameters: MSALNativeAuthResetPasswordParameters, delegate: ResetPasswordStartDelegate )
Parameters
parameters
Parameters used for the Reset Password flow.
delegate
Delegate that receives callbacks for the Reset Password flow.
-
Retrieve the current signed in account from the cache.
Declaration
Swift
public func getNativeAuthUserAccount(correlationId: UUID? = nil) -> MSALNativeAuthUserAccountResult?
Parameters
correlationId
Optional. UUID to correlate this request with the server for debugging.
Return Value
An object representing the account information if present in the local cache.