Comment on page
Authenticate a user
After registering the user, you can authenticate it with its email and password.
All the communication with the server is made in https, so all the data is encrypted.
If the authentication is correct, the api will return the access token.
This token will be put in the
Authorization
header for each subsequent call to all the MBurger apis.MBAuth.authenticateUser(withEmail: "email", password: "password", success: { accessToken in
}, failure: { error in
})
MBurger offers the possibility to authenticate a user with social networks too.
Socials currently supported:
- Google
- Facebook
- Apple
MBAuth.authenticateUser(withSocialToken: "socialToken",
tokenType: Social_Token_Type,
success: { accessToken in
}, failure: { error in
})
If the user logs in with apple you need to pass to this function also the name and surname because those cannot be retrieved by the server
You can see if a user is currently authenticated with
MBAuth.userIsLoggedIn
.If a user is authenticated you can retrieve its access token with
MBAuth.authToken
else this will return nil
.To logout the current user:
MBAuth.logoutCurrentUser({
}, failure: { error in
})
MBAuth
saves the user information in the Keychain. If you are having issues when authenticating a user with the message “Couldn’t add the Keychain Item.” turn on Keychain sharing in your app capabilities section n for your app and add “com.mumble.mburger”. This should fix it.

Keychain settings
Last modified 3yr ago