let client = SupabaseClient( supabaseURL: URL(string: "https://abc.supabase.co")!, supabaseKey: "abc")
let client = SupabaseClient( supabaseURL: URL(string: "https://abc.supabase.co")!, supabaseKey: "abc")
And I get the user's ID like this:
for await state in client.auth.authStateChanges { session.userID = state.session?.user.id}
for await state in client.auth.authStateChanges { session.userID = state.session?.user.id}
Are there any changes that can be made to Swift applications to take advantage of the new JWT Signing Keys feature to help improve authentication time?
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.