How to Connect Xano and Bubble

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024
  • In this video, Cam walks you through how to connect Xano and Bubble.
    Xano - The Fastest No Code Backend Dev Platform
    go.xano.co/3HG...
    Twitter
    / nocodebackend
    Subscribe to Xano's Channel for Weekly New Content
    / nocodebackend

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

  • @divyarthsingh589
    @divyarthsingh589 2 หลายเดือนก่อน

    Detailed step by step tutorial would be much better, this didn't covered every step and hard to understand for beginners.

  • @thephirstory
    @thephirstory 23 วันที่ผ่านมา

    Thank you!

  • @_brian_kiptoo
    @_brian_kiptoo 7 หลายเดือนก่อน +1

    so suppose i have table user and table clinic, i should create an enum-{OS} in user say doctor / patient that is a column
    and a colum in clinic type enum-{OS} for hospital / clinic
    and any table with an OptionSet

  • @csoutsource
    @csoutsource 5 หลายเดือนก่อน

    What I am not understanding is that if we are logging in with bubble, what is the workflow for creating this user In Xano.

    • @CameronBXano
      @CameronBXano 5 หลายเดือนก่อน +1

      Hey there - to create the user from Bubble -> Xano, it follows the same idea as the login flow @9:17.
      I would approach this with the Bubble user being created first, and once the Bubble user is created, you can then create the Xano user. The Xano user can then be passed the bubble user's id if necessary, or you can update the current user in Bubble with the id from the response received from Xano.
      Since the Bubble platform leverages the current user, I would want to first make sure the Bubble user account can be created; if it can, then we create the Xano user.
      Let me know if this makes sense or if I can clarify!

  • @_brian_kiptoo
    @_brian_kiptoo 7 หลายเดือนก่อน

    how can i define option sets in xano

    • @CameronBXano
      @CameronBXano 7 หลายเดือนก่อน +2

      Hey, great question! Options sets within Bubble are super powerful and can be reused throughout the app. If we are expecting to use the same set of options, we can implement something similar within Xano on the data table level. We'd create a new column of type 'enum' and then set the values that we want to use. Anytime we are writing to this table, we can supply a value as found in our enum list, and the record will update with that value. If we supply a value to our enum column that wasn't defined (that is, we didn't add it as an option within our enum column), then an error will be thrown. We may need to make a video on enums and option sets! Let me know if I can clarify!