This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() async { | |
| final loginResult = await Auth0Client('brucke.auth0.com', 'client123').webAuthentication().login( | |
| audience: 'test', | |
| scopes: {'openid', 'profile', 'email'}, | |
| redirectUri: 'com.auth0.samples://flutter', | |
| idTokenValidationConfig: IdTokenValidationConfig(leeway: 60), | |
| organizationId: '1234', | |
| useEphemeralSession: true, | |
| parameters: {'screen_hint': 'signup'}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "net" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "syscall" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::cell::RefCell; | |
| use std::{collections::VecDeque, rc::Rc}; | |
| type NodeContainer = Rc<RefCell<Node>>; | |
| #[derive(Debug, Clone)] | |
| enum Object { | |
| User(String), | |
| Folder(String), | |
| Document(String), |
OlderNewer