User authentication in FlutterFlow with Supabase

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ต.ค. 2024

ความคิดเห็น • 4

  • @ebenezereshun6974
    @ebenezereshun6974 22 วันที่ผ่านมา

    how do you get the id of users who are not authenticated. For instance an internal app where an admin create accounts for users instead of them creating the accounts themselves.

    • @ThethingIlearn
      @ThethingIlearn  22 วันที่ผ่านมา

      Let me know if i understand right you create the user for them and then its send them email to confirm the user creation. and you want to check who confirm the email and who not?

    • @ebenezereshun6974
      @ebenezereshun6974 22 วันที่ผ่านมา

      @@ThethingIlearn Not really. just want to know how do you get an id of an existing user who isn't authenticated so that you can update their record, example name, role, phone number, etc

    • @ThethingIlearn
      @ThethingIlearn  22 วันที่ผ่านมา

      Lets start that in Supabase when you create user its kind off automatically authenticated the user. now to update the users you can do it in the supabase Clint it self it will be the fastest and easiest. other way is in the user table where you store the first name, phone number, last name... you can update by simply query the users table to FlutterFlow and use the update row(s) action to update the needed fields. and the last thing if you need to access the Authentication section in supabase where your real user info is stored the only way right now is with custom action.