We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1b62d0 commit 833ae0bCopy full SHA for 833ae0b
example/app.shared.js
@@ -1,8 +1,11 @@
1
+import "react-native-get-random-values";
2
+import { v4 as uuid } from "uuid";
3
+
4
export function getAppleAuthConfig() {
5
6
// Generate secure, random values for state and nonce
- const nonce = "uio";//uuid();
- const state = "uio";//uuid();
7
+ const nonce = uuid();
8
+ const state = uuid();
9
10
// https://developer.apple.com/documentation/sign_in_with_apple/sign_in_with_apple_js/incorporating_sign_in_with_apple_into_other_platforms
11
const appleAuthConfig = {
0 commit comments