How can I access to oauth scopes data?

No data corresponding to scopes could be found in user metadata.

const signInWithKakao = async () => {
    const { data, error } = await supabaseClient.auth.signInWithOAuth({
      provider: 'kakao',
      options: {
        scopes: 'name gender birthday birthyear phone_number account_ci',
      },
    });
Was this page helpful?