Jacob Gershkovich

Jacob Gershkovich

Conversations with developers, entrepreneurs, and anyone doing interesting things in the no code space!

What is an API? | Bubble.io

What is an API? | Bubble.io

Пікірлер

  • @TheRainemt
    @TheRainemt2 күн бұрын

    I wanna damn near marry you after this. Thanks mate

  • @Gerschwin
    @Gerschwin4 күн бұрын

    Thanks. This was awesome

  • @brandonmccrae5472
    @brandonmccrae54729 күн бұрын

    Great interview!

  • @fishkeepinghobby1
    @fishkeepinghobby111 күн бұрын

    Yeah if you're obviously reading your script

  • @anthonyphan1922
    @anthonyphan192218 күн бұрын

    bs

  • @ChatGPT-r1m12rrTESTgpt
    @ChatGPT-r1m12rrTESTgpt18 күн бұрын

    ƈհმէցրէ֍

  • @OrrDee-
    @OrrDee-28 күн бұрын

    Easy to follow - thanks!😁

  • @salahtamimy5322
    @salahtamimy5322Ай бұрын

    Thank you very much, It helps me a lot and save my time, I have faced a problem when I assign const a bubble element's value, I kept getting "Syntax Error: Unexpected token ':' can you help?

  • @zacktzeng8569
    @zacktzeng8569Ай бұрын

    Thanks for the video. Your explanation was very helpful. I have one question though. In the video, you mentioned that if we don't use Bubble's API connector authentication integration, we would need to worry about things like where to store the access and refresh token. Can you explain how you handled the storage of the access and refresh tokens when you set everything up manually, which was effectively what you did for this video. I am not quite sure where that happened. Thanks!!

  • @tobialtamirano4098
    @tobialtamirano4098Ай бұрын

    Man, THANKS

  • @ByronBennett
    @ByronBennettАй бұрын

    Very helpful video. Many thanks! I think there is a problem. When you change the behavior of dropping on the First item, you eliminate the ability to drop something into the 2nd Position. You really need to be able to drop something in the 0th position (which does not exist) in order to place it before the first. The initial behavior was that you always placed the item after the place it was dropped. After you made the change to dropping on the first item, now it places before that, leaving a hole in the logic so that you can't drop anything between position 1 and 2.

  • @ByronBennett
    @ByronBennettАй бұрын

    I may be wrong, but it seems that to get the correct behavior, you need a drop area for the top half of a cell to drop something before it, and a drop area for the 2nd half of the cell to drop after it.

  • @Default42975
    @Default429752 ай бұрын

    Hi Guys! Trying to get dynamic input working for the API connector - it works for JSON or Raw, but I can’t seem to get it working for the Form-Data Body type.

  • @abeabukwaik
    @abeabukwaik2 ай бұрын

    Minute 28:57 - is there a way to make the parameters dynamic on bubble or do you have to use the Body field? P.S. this whole series is AMAZING!! Thank you for making it!

  • @abdella4
    @abdella42 ай бұрын

    Thank you! I was stuck on this for 2 days.

  • @Planilha-de-Fluxo
    @Planilha-de-Fluxo2 ай бұрын

    Hi Jacob, great tutorial, thanks! I'm having some issues regarding the data retrieval. I am guessing that because I bulk create and those things aren't coming with "created by" (current user) the fetching of the data is unoptimzed causing delays on data manipulation in my app. How to fix this?

  • @TheNosbelgsOpinion
    @TheNosbelgsOpinion2 ай бұрын

    How can I make Gantt charts?

  • @duno08
    @duno082 ай бұрын

    Hi Jacob, I'm trying to read data from Zabbix through the Bubble API CONNECTOR, I can do it using JSON code but I would like to use Bubble parameters, can you help me with this?

  • @pedrocdo9599
    @pedrocdo95992 ай бұрын

    This series was so useful. Very specific and detailed. Other videos on KZread used Postman or Xano, and I don't want to download a friking coding platform to simply connect an API to bubble.

  • @hustlin_heev
    @hustlin_heev2 ай бұрын

    Hey Jacob - At 35:11 you mention that signup/login with social network, behind the scenes, bubble is creating a username/password using the unique token, and allowing users to login with that. How would you do this manually? I have to reverse engineer this for shopify auth

  • @greyzdev
    @greyzdev2 ай бұрын

    From personal experience, using Bubble has been a bad experience as a developer. Building a feature rich app can technically be done using their GUI, but most complicated app interactions will require some level of API knowledge in order to actually integrate it with practical tools such as Intercom or Slack.

  • @flat5th
    @flat5th3 ай бұрын

    Thank you for this informative and useful video. Although perhaps obvious to some, please consider the potential for ambiguity in the terminology you use. A “post” in your application seems to be a blog post servicing the business model of your application. Although I could be wrong. Please be aware the semantic risk you are taking in this example is that you are using a term that is an http keyword. Consequently the term “creating a post” can mean several things. I believe your use means “create a record in the Post table of the database “, but I - among others perhaps - cannot be sure. Even though it might seem laborious, repetitive, bothersome and inconvenient , saying “record in the Post table of the database” every time it is referred eliminates ambiguity. Still I come away from your videos that your ultimate goal is to clearly communicate your ideas and be helpful to the community. The less you make listeners work, the more subscribers you will have IMHO. #pleasedisambiguate

  • @AdministrativoBridge
    @AdministrativoBridge3 ай бұрын

    THE BEST!!

  • @clarissavanrooy9948
    @clarissavanrooy99483 ай бұрын

    Hi, what to do if the data you are trying to save, in my case downloadable links with documents from an external website , saves as one long string instead of the links being saved separately?

  • @hustlin_heev
    @hustlin_heev3 ай бұрын

    2 real ones in this podcast!

  • @hustlin_heev
    @hustlin_heev3 ай бұрын

    This format as text is interesting.. My app has an order form. The user can select more than 1 product variant and a quantity on a form and submit an order. So for example 1 shirt size S and 1 pants size Large. I save these both in different states. selected_product: shirt, pants and selected_size: S, Large. The order API needs to take in “line items” like this: { "order": { "line_items": [ { "variant_id": 41385256878173, "quantity": 1 }, { "variant_id": 41385256943709, "quantity": 1 } ], How do I split the list of things in the state to go into the API array? How does it know that shirt is small and pants are large and not a large shirt? How does the API dynamically adapt to the number of items ordered - 2,3,4… and know to add more brackets and keys?

  • @costassiavelis
    @costassiavelis3 ай бұрын

    Hi Jacob. Are you contactable directly?

  • @ognitech8349
    @ognitech83493 ай бұрын

    Hi. U said in ur video u don't know the reason why bubble allows you to switch from data to action. I don't know exactly why....but I can tell you how I use those two functions. I use data setup when I use an API GET function so I can display on my side the data I am getting from the API and I use the ACTION setup when I need to use API POST function to send data to the API...so I trigger it in the workflow. I hope this helps someone. Great video tutorial!

  • @joshuasnow1227
    @joshuasnow12273 ай бұрын

    Massively helpful video. I used these steps to help me through the Reddit connection. For anyone else dealing with Reddit, the "Code" that comes back has an extra "#_" that you have to remove with find and replace action.

  • @oojeni
    @oojeni3 ай бұрын

    The video really helped me understand Oauth 2.0 on bubble. Thank you so much. Is it possible for you to make a video about Instagram basic API too? That would really really save me.

  • @costassiavelis
    @costassiavelis3 ай бұрын

    Hi Jacob, are you still making videos?

  • @user-hs8yh1oy4b
    @user-hs8yh1oy4b3 ай бұрын

    Thank You SOO MUCH FOR THIS VIDEO. From Brazil. 👏👋👍

  • @Planilha-de-Fluxo
    @Planilha-de-Fluxo3 ай бұрын

    Man this was awsome. Thanks

  • @rodnyabreu9488
    @rodnyabreu94884 ай бұрын

    Can you show how to parse json using that plugin 🙏

  • @rooster7cogburn
    @rooster7cogburn4 ай бұрын

    One of the hardest things for me is adjusting my mindset to keep it simple. I have read so many books on usability and am actually in the middle of a UX bachelor's degree. Some things there aren't necessarily well explained. I am trying my damnedest to improve, and it will be a heck of a learning process.

  • @hayttlesds
    @hayttlesds4 ай бұрын

    Make more sense store previous index in custom state and replace item before DropArea.

  • @romanmed9035
    @romanmed90354 ай бұрын

    i have not backend workwfows

  • @SamiSabirIdrissi
    @SamiSabirIdrissi4 ай бұрын

    Im confused

  • @vincent_hall
    @vincent_hall4 ай бұрын

    Why do I get nothing displayed, no charts at all, in preview?

  • @anastasiiaruslanivna6251
    @anastasiiaruslanivna62514 ай бұрын

    what to do when you need to show 4 columns from two different tables (planned expenses, actual expenses, planned income, actual income) and so on for each mission?

  • @Vincent-qd8lj
    @Vincent-qd8lj4 ай бұрын

    what are you, stupid?

  • @salvatorepercival
    @salvatorepercival4 ай бұрын

    Hey Jacob! Thanks for this, it really helped me. Quick question if you see this: is there an easy way to limit the value expression to a certain range? For example, instead of showing from 0-100, I would like to focus on the range from 30-60 because all of my entries will be within that range. Let me know, thanks!

  • @vincent_hall
    @vincent_hall5 ай бұрын

    Gemini: Unfortunately, the Chart Element plugin in Bubble doesn't directly support plotting data from uploaded files.

  • @vincent_hall
    @vincent_hall5 ай бұрын

    This doesn't help me at all to plot a thing that isn't aggregated. I just want to plot data from a spreadsheet file I've uploaded. Why is Bubble so opaque and hard to use?! So user unfriendly! Soul crushing!

  • @joelthehuman
    @joelthehuman5 ай бұрын

    Lmao he felt so smart saying that

  • @dalibor5673
    @dalibor56735 ай бұрын

    great video, workflow understanding is hardest for me, can you publish more videos with concentration on understanding the workflows? Thanks

  • @IsaacBG84
    @IsaacBG845 ай бұрын

    Hello, I made an API call then save the results in custom states and display on text fields, so far so good. The json data comes as list too so i created custom states as list to save all the data from the api call. Problem is that when i try to use a chart it doesnt work. I cant choose as datatype or source those custom states and if i use the api call as datatype it doesnt allow me to choose the data from the api call. Ho can i chart with api data? I got a free account , please tell me i dont need to go to backend workflows or save data on bubble database in order to do charts.

  • @drewarensberg3162
    @drewarensberg31625 ай бұрын

    DUDE thank you so much for making this I have been smacking my head against the desk for days trying to get the javascript element to work for me thank you!

  • @MDFirstCity
    @MDFirstCity5 ай бұрын

    bro thought he cooked

  • @MDFirstCity
    @MDFirstCity5 ай бұрын

    no shit LMAo