A Swift & iOS framework to authenticate using Auth0 and with a Native Look & Feel
📚 Documentation • 🚀 Getting Started • 💬 Feedback
Migrating from v1? Check the Migration Guide.
Lock.swift uses Auth0.swift 1.x.
Add the following line to your Podfile
:
pod "Lock", "~> 2.24"
Then, run pod install
.
Add the following line to your Cartfile
:
github "auth0/Lock.swift" ~> 2.24
Then, run carthage bootstrap --use-xcframeworks --platform iOS
.
Open the following menu item in Xcode:
File > Add Packages…
In the Search or Enter Package URL search box enter this URL:
https://github.com/auth0/Lock.swift
Then, select the dependency rule and press Add Package.
Head to the Auth0 Dashboard and create a new Native application.
Lock.swift needs the Client ID and Domain of the Auth0 application to communicate with Auth0. You can find these details in the settings page of your Auth0 application. If you are using a custom domain, use the value of your custom domain instead of the value from the settings page.
Create a plist
file named Auth0.plist
in your app bundle with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ClientId</key>
<string>YOUR_AUTH0_CLIENT_ID</string>
<key>Domain</key>
<string>YOUR_AUTH0_DOMAIN</string>
</dict>
</plist>
Lock
.classic(clientId: "YOUR_AUTH0_CLIENT_ID", domain: "YOUR_AUTH0_DOMAIN")
// ...
Lock
.passwordless(clientId: "YOUR_AUTH0_CLIENT_ID", domain: "YOUR_AUTH0_DOMAIN")
// ...
Make sure Lock.swift can receive callback URLs.
// AppDelegate.swift
import Lock
// ...
func application(_ app: UIApplication,
open url: URL,
options: [UIApplication.OpenURLOptionsKey: Any]) -> Bool {
return Lock.resumeAuth(url, options: options)
}
// SceneDelegate.swift
import Lock
// ...
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
guard let url = URLContexts.first?.url else { return }
Lock.resumeAuth(url, options: [:])
}
Learn how to use Lock.swift in Examples ↗
We appreciate feedback and contribution to this repo! Before you get started, please see the following:
To provide feedback or report a bug, please raise an issue on our issue tracker.
Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout Why Auth0?
This project is licensed under the MIT license. See the LICENSE file for more info.