| /expo/packages/expo-dev-launcher/bundle/functions/__tests__/ |
| H A D | startAuthSessionAsync.test.ts | 2 import { openAuthSessionAsync, getAuthSchemeAsync } from '../../native-modules/DevLauncherAuth'; 5 const mockOpenAuthSessionAsync = openAuthSessionAsync as jest.Mock; 25 expect(openAuthSessionAsync).not.toHaveBeenCalled(); 29 expect(openAuthSessionAsync).toHaveBeenCalled(); 30 expect(openAuthSessionAsync).toHaveBeenCalledWith( 34 expect(openAuthSessionAsync).toHaveBeenCalledWith( 44 expect(openAuthSessionAsync).not.toHaveBeenCalled(); 49 expect(openAuthSessionAsync).toHaveBeenCalled(); 51 expect(openAuthSessionAsync).toHaveBeenCalledWith( 55 expect(openAuthSessionAsync).toHaveBeenCalledWith(
|
| /expo/packages/expo-web-browser/src/__tests__/ |
| H A D | WebBrowser-test.native.ts | 42 await expect(WebBrowser.openAuthSessionAsync(pageUrl, redirectUrl)).rejects.toThrowError( 45 await expect(WebBrowser.openAuthSessionAsync(pageUrl, redirectUrl)).rejects.toThrowError( 48 await expect(WebBrowser.openAuthSessionAsync(pageUrl, redirectUrl)).rejects.toThrowError(
|
| /expo/packages/expo-dev-launcher/bundle/functions/ |
| H A D | startAuthSessionAsync.ts | 4 import { openAuthSessionAsync, getAuthSchemeAsync } from '../native-modules/DevLauncherAuth'; 14 const result = await openAuthSessionAsync(authSessionURL, redirectBase);
|
| /expo/packages/expo-dev-launcher/bundle/native-modules/ |
| H A D | DevLauncherAuth.ts | 99 export async function openAuthSessionAsync(url: string, returnUrl: string): Promise<any> { function 100 if (DevLauncherAuth.openAuthSessionAsync) { 102 return await DevLauncherAuth.openAuthSessionAsync(url, returnUrl);
|
| /expo/packages/expo-web-browser/build/ |
| H A D | WebBrowser.js | 204 export async function openAuthSessionAsync(url, redirectUrl, options = {}) { function 206 if (!ExponentWebBrowser.openAuthSessionAsync) { 210 … return ExponentWebBrowser.openAuthSessionAsync(url, redirectUrl, _processOptions(options)); 212 return ExponentWebBrowser.openAuthSessionAsync(url, redirectUrl);
|
| H A D | ExpoWebBrowser.web.d.ts | 12 …openAuthSessionAsync(url: string, redirectUrl?: string, openOptions?: WebBrowserOpenOptions): Prom… constant
|
| H A D | WebBrowser.d.ts | 120 export declare function openAuthSessionAsync(url: string, redirectUrl?: string | null, options?: Au…
|
| H A D | WebBrowser.js.map | 1 …openAuthSessionAsync`](#webbrowseropenauthsessionasyncurl-redirecturl-browserparams).\n *\n * @par…
|
| H A D | ExpoWebBrowser.web.js | 85 async openAuthSessionAsync(url, redirectUrl, openOptions) {
|
| /expo/packages/expo-dev-launcher/bundle/functions/__mocks__/ |
| H A D | openAuthSessionAsync.ts | 1 export const openAuthSessionAsync = jest.fn().mockResolvedValue('123'); constant
|
| /expo/packages/expo-web-browser/src/ |
| H A D | WebBrowser.ts | 260 export async function openAuthSessionAsync( function 266 if (!ExponentWebBrowser.openAuthSessionAsync) { 270 return ExponentWebBrowser.openAuthSessionAsync(url, redirectUrl, _processOptions(options)); 272 return ExponentWebBrowser.openAuthSessionAsync(url, redirectUrl);
|
| H A D | ExpoWebBrowser.web.ts | 113 async openAuthSessionAsync(
|
| /expo/apps/native-component-list/src/screens/WebBrowser/ |
| H A D | OpenAuthSessionAsyncDemo.tsx | 8 name: 'openAuthSessionAsync', 35 return WebBrowser.openAuthSessionAsync(url, redirectUrl, options);
|
| /expo/packages/expo-dev-launcher/bundle/native-modules/__mocks__/ |
| H A D | DevLauncherAuth.ts | 1 export const openAuthSessionAsync = jest.fn().mockResolvedValue('123'); constant
|
| /expo/packages/expo-web-browser/ |
| H A D | README.md | 10 …ing WebBrowser for authentication you will want to use WebBrowser.openAuthSessionAsync, and if you…
|
| H A D | CHANGELOG.md | 116 - Add `preferEphemeralSession` option to `openAuthSessionAsync` to ask for a private auth session o… 150 - Fixed `openAuthSessionAsync` erroneously stating a browser was open when it had failed to open. (… 196 - Fixed `openAuthSessionAsync` crashing when cancelled on iOS. ([#9722](https://github.com/expo/exp…
|
| /expo/packages/expo-auth-session/build/ |
| H A D | AuthRequest.js | 138 result = await WebBrowser.openAuthSessionAsync(startUrl, returnUrl, options);
|
| H A D | AuthRequest.js.map | 1 …serAuthSessionResult;\n try {\n result = await WebBrowser.openAuthSessionAsync(startUrl, r…
|
| /expo/packages/expo-auth-session/src/ |
| H A D | AuthRequest.ts | 182 result = await WebBrowser.openAuthSessionAsync(startUrl, returnUrl, options);
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | webbrowser.mdx | 14 … `WebBrowser` for authentication you will want to use `WebBrowser.openAuthSessionAsync`, and if yo…
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 … `WebBrowser` for authentication you will want to use `WebBrowser.openAuthSessionAsync`, and if yo…
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 … `WebBrowser` for authentication you will want to use `WebBrowser.openAuthSessionAsync`, and if yo…
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 … `WebBrowser` for authentication you will want to use `WebBrowser.openAuthSessionAsync`, and if yo…
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 … `WebBrowser` for authentication you will want to use `WebBrowser.openAuthSessionAsync`, and if yo…
|
| /expo/home/screens/AccountModal/ |
| H A D | LoggedOutAccountView.tsx | 91 const result = await WebBrowser.openAuthSessionAsync(authSessionURL, redirectBase, {
|