Swift: Link an identity to a user

Examples

Link an identity to a user

try await supabase.auth.linkIdentity(provider: provider)

Link an identity to a user with custom URL opening logic

try await supabase.auth.linkIdentity(provider: provider) \{ url in 
  // custom URL opening logic
\}