Can someone provide an overview on how to set up Google Sign-up/Log-in for a mobile native app? Also how can I get user’s name to populate name field on user data type?
Thanks,
Can someone provide an overview on how to set up Google Sign-up/Log-in for a mobile native app? Also how can I get user’s name to populate name field on user data type?
Thanks,
@luqmankm12 For a native app, you let Google handle auth on the mobile side with their SDK, then send the ID token or auth code to Bubble. Bubble verifies it, logs the user in, or creates the user using the email as the identifier. That keeps responsibilities clean and predictable.
Google already gives you the user’s name details. On the first login, just write those values to your User data type when the account is created. After that, leave them alone. Auth happens every time, profile data is a one-time setup.