Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/casdoor/casdoor-flutter-example
The example code for Casdoor Flutter SDK
https://github.com/casdoor/casdoor-flutter-example
auth authn casdoor dart flutter iam oauth oidc sdk sso
Last synced: 2 months ago
JSON representation
The example code for Casdoor Flutter SDK
- Host: GitHub
- URL: https://github.com/casdoor/casdoor-flutter-example
- Owner: casdoor
- License: apache-2.0
- Created: 2022-07-18T13:54:55.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-20T12:59:10.000Z (about 1 year ago)
- Last Synced: 2024-02-22T12:38:24.913Z (11 months ago)
- Topics: auth, authn, casdoor, dart, flutter, iam, oauth, oidc, sdk, sso
- Language: C++
- Homepage: https://github.com/casdoor/casdoor-flutter-sdk
- Size: 4.36 MB
- Stars: 5
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
📦⚡️Casdoor flutter example
An example of casdoor-flutter-sdk
## The example uses the following Casdoor demo site server:
The server: https://door.casdoor.com/
## Quick Start
- download the code
```bash
git clone [email protected]:casdoor/casdoor-flutter-example.git
```- install dependencies
```shell
flutter pub get
```
## Configure
Initialization requires 6 parameters, which are all str type:
| Name (in order) | Must | Description |
| ---- | ---- |---- |
| clientId | Yes | Application.client_id |
| serverUrl | Yes | Casdoor Server Url, such as `https://door.casdoor.com` |
| organizationName | Yes | Organization name |
| appName | Yes | Application name |
| redirectUri | Yes | URI of Web redirection |
| callbackUrlScheme | Yes | URL Scheme |```
final AuthConfig _config = AuthConfig(
clientId: "014ae4bd048734ca2dea",
serverUrl: "https://door.casdoor.com",
organizationName: "casbin",
appName: "app-casnode",
redirectUri: "http://localhost:9000/callback.html",
callbackUrlScheme: "casdoor"
);
```## Run
```
flutter run -d chrome --web-port 9000
```## Notes for different platforms
### Windows 10
Download the WebView2 runtime from [here](https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section) and install it.
The WebView2 runtime is included in Windows 11 by default.
## Linux and macOS
Add the package `desktop_webview_window: ^0.2.3` inside *dependencies* to the *pubspec.yaml* file.
Modify the *main* function to look like the following:
```
void main(List args) async {
WidgetsFlutterBinding.ensureInitialized();
if (runWebViewTitleBarWidget(args)) {
return;
}
runApp(const MyApp());
}
```### Web
On the Web platform an endpoint needs to be created that captures the callback URL and sends it to the application using the JavaScript postMessage() method. In the ./web folder of the project, create an HTML file with the name e.g. callback.html with content:```
Authentication complete
Authentication is complete. If this does not happen automatically, please
close the window.window.opener.postMessage({
'casdoor-auth': window.location.href
}, window.location.origin);
window.close();```
Redirection URL passed to the authentication service must be the same as the URL on which the application is running (schema, host, port if necessary) and the path must point to created HTML file, /callback.html in this case, like `callbackUri = "${_config.redirectUri}.html"`. The callbackUrlScheme parameter of the authenticate() method does not take into account, so it is possible to use a schema for native platforms in the code.It should be noted that when obtaining a token, cross domain may occurFor the Sign in with Apple in web_message response mode, postMessage from https://appleid.apple.com is also captured, and the authorization object is returned as a URL fragment encoded as a query string (for compatibility with other providers).
## After running, you will see the following interfaces:
| **Android** | **iOS** | **Web** |
| ---- | ---- |---- |
| ![Android](screen-andriod.gif) |![iOS](screen-ios.gif) |![Web](screen-web.gif) |