I’m trying to do this ```supabase.auth.signUpWith(...
# supabase-kt
b
I’m trying to do this
Copy code
supabase.auth.signUpWith(IDToken) {
  provider = Apple
  idToken = credential.idToken
  data = buildJsonObject {  put("name", "someName") }
}
But it doesn’t update. Is this supposed to be an admin option only?
j
What doesn't update?
b
Adding data to signUpWith doesn’t seem to add any data. I have to add it later with
Copy code
supabase.auth.updateUser { data = ... }
j
Yea thats not supported, I'll improve that. Some properties are shared with the other providers, thats why its there
b
That’s good to know. thanks for responding