Web/SSO Authentication for Unity [iOS/macOS/iPadOS]
Iceman Software Development
$15.99
Date |
Price |
---|---|
Date |
Price($) |
03/16(2018) |
0.99 |
07/29(2019) |
4.99 |
08/12(2022) |
9.99 |
01/24(2023) |
15.99 |
11/22(2024) |
15.99 |
Jump AssetStore
Web/SSO Authentication is a native iOS/iPadOS/macOS plugin that allows web authentication using ASWebAuthenticationSession and for iOS SFSafariViewController.
SSO authentication support.ASWebAuthenticationSession works on iOS/iPadOS/macOS.SFSafariViewController is available on iOS only.Min iOS version set to 12 to support ASWebAuthenticationSession.Min Xcode version 14Min macOS version set to 10.15 to support ASWebAuthenticationSession.Await/Async support.Web/SSO Authentication for UnityDescriptionWeb/SSO Authentication is a native iOS/iPadOS/macOS plugin that allows web authentication using ASWebAuthenticationSession and for iOS opening URLs with SFSafariViewController. SSO Authentication from different services.Supports ASWebAuthenticationSession to show web pages.SSO Authentication on iOS/iPadOS/macOSOn iOS/iPadOS/macOS supports web-based authentication. Very important since many companies switch to this way of authentication to improve security.Await/Async support.Reach out to our team for the custom integration or project developmet.UsageAdd using NatieWebAuthenticaion;ASWebAuthenticationSession available on iOS/iPadOS/macOS.The plugin is easy to use: To use ASWebAuthenticationSession, simply import the package and call the function with parameters: the URL to open, scheme, prefersEphemeralWebBrowserSession, and Action callback with callbackUrl and error parameters. You need the backend to test the web authentication.An example is available with web-based redirection to see the demo drop UnityAuthViewControllerDemo.prefab into the empty scene. Then build an iOS or MacOS project on your device.To use SFSafariViewController, simply import the package and call the function with two parameters: the URL to open and Action with a redirect_url parameter.SafariViewController is available on iOS/iPadOS.UnitySafariViewController.PresentSafariViewControllerWithURL("https://example.com",(redirect_uri)=> { }); or var result = await UnitySafariViewController.PresentSafariViewControllerWithURLAsync("https://example.com);An example is available with web-based redirection to see the demo drop UnitySafariViewControllerDemo.prefab into the empty scene. Then build an iOS project on your device.