quick_piper15
12/09/2022, 4:38 PMNoah
12/09/2022, 5:18 PMsnakespear.eth
12/09/2022, 6:51 PMsnakespear.eth
12/09/2022, 6:51 PMuzelac
12/10/2022, 6:22 PMAuthApiError: invalid JWT: unable to parse or verify signature, token is expired by 2m43s
in my supabase calls.garyaustin
12/10/2022, 10:31 PM${fence}
12/10/2022, 10:31 PMEK
12/11/2022, 3:27 AMEK
12/11/2022, 3:29 AMjs
const {
data: { user: signUpUser, session: signUpSession },
error: signUpError,
} = await supabaseClient.auth.signUp({
email: 's@ss.com',
password: 'ssss',
})
EK
12/11/2022, 3:30 AMEK
12/11/2022, 3:30 AMjs
export type AuthResponse =
| {
data: {
user: User | null
session: Session | null
}
error: null
}
| {
data: {
user: null
session: null
}
error: AuthError
}
EK
12/11/2022, 3:31 AMjs
export type AuthResponse =
| {
user: User | null
session: Session | null
error: null
}
| {
user: null
session: null
error: AuthError
}
EK
12/11/2022, 3:31 AMLuv
12/11/2022, 4:13 AMEK
12/11/2022, 4:29 AMEK
12/11/2022, 4:32 AMJason Creviston
12/11/2022, 11:58 AMdata
?Jason Creviston
12/11/2022, 12:12 PMgaryaustin
12/11/2022, 2:33 PMconst {data} = await supabase1.auth.signUp({
email: 'aaaa',
password:'aaaaaaaaa'
})
console.log('login', data)
returns
login {
"user": null,
"session": null
}
So nested in data for 2.x.x.EK
12/11/2022, 2:37 PMSolias
12/11/2022, 2:58 PMSolias
12/11/2022, 3:18 PMgaryaustin
12/11/2022, 3:23 PMLuv
12/11/2022, 5:39 PMLuv
12/11/2022, 5:41 PM${fence}
12/12/2022, 12:06 AM${fence}
12/12/2022, 12:08 AMeric.uhd
12/12/2022, 12:21 AMDeno.env
allows you to get environment variables
So to have a 100% Dart support, try to create a layer of compatibility for Deno in Dart, if I'm not mistaken you would only have to handle the Deno namespace, URL imports, and maybe Deno files (deno.json, deno.lock) and Deno CLI.
Create it on Open Source, I'm sure people would help youEK
12/12/2022, 3:05 AMEK
12/12/2022, 3:06 AM