Stripe Checkout with React Crash Course

Поделиться
HTML-код
  • Опубликовано: 4 сен 2024

Комментарии • 37

  • @CH3THIN
    @CH3THIN 2 года назад +8

    I love how a part of this video was made at 4am. True devs over here

    • @antattackBAM
      @antattackBAM 2 года назад

      Truth! Time just flies by when you're having fun :)

  • @robertolsen7646
    @robertolsen7646 2 года назад +5

    Thankyou I have been struggling for 3days with integrating stripe in my app. You have helped so much!!!

  • @buddhamagictv
    @buddhamagictv Год назад

    I have never seen anybody use such a similar workflow and method of coding as myself. Wonderful tutorial, and easy for me to understand, because the tutor works in the same way i do. Stripe also connects very well with Woo Commerce and Ecwid.

  • @jbelkii
    @jbelkii Год назад +5

    Great tutorial, thanks very much. But, how do we deliver content ONLY after successful payment and how to handle unsuccessful payments?

  • @orianodev-fan
    @orianodev-fan Год назад

    Thank you so much, it's been 5H of deadly trying before turning into your video 💔💔

  • @kimbapslayer1995
    @kimbapslayer1995 Год назад +1

    Can you make a video covering how to fetch products from an API, and create a checkout method with items added to a local state cart? I would like to build a stripe checkout process with similar ease of effort, from say a Content Management System and let stripe handle the details.

  • @aidapira-
    @aidapira- 2 года назад +2

    Thanks so much for this tutorial.

  • @serispeaks
    @serispeaks Год назад

    Thank you, it worked perfectly. As described! But how do we deliver content after payment and how to handle failed payments?

  • @tonyhawk94
    @tonyhawk94 2 года назад +1

    Straight to the point, that's perfect thanks !

  • @RobertThomasrob_thomasa10
    @RobertThomasrob_thomasa10 2 года назад +2

    Great video!

  • @malikforz9490
    @malikforz9490 2 года назад +1

    thanks for the great video but can you please tell me how to add shipping adress ..... and also apple pay doesnt show for me

  • @andrejkling3886
    @andrejkling3886 2 года назад +2

    Excellent ... thank you

  • @danieledutto9283
    @danieledutto9283 2 года назад +1

    do you also cover the webhook argoument? cause i'm having some trouble and asking how to fix it! BTW very nice video, thank you so much!

    • @worldclasscode1847
      @worldclasscode1847 2 года назад

      Hey Daniele, I cover webhook in my Nike Clone tutorial. It's on the Ms. Cloner youtube channel.

  • @LevementeLivre
    @LevementeLivre 2 года назад

    Thank you very much! Great tutorial!

  • @ronananderson
    @ronananderson Год назад +1

    Anyone else get the error: IntegrationError: Invalid value for Stripe(): apiKey should be a string.

    • @jbelkii
      @jbelkii Год назад +2

      I did. [SOLVED]: loadStripe(`${process.env.REACT_APP_STRIPE_KEY}`)

  • @luckyrawat2573
    @luckyrawat2573 2 года назад +1

    thank you really helpful

  • @birolaygun1515
    @birolaygun1515 Год назад

    Thank you very much. 🙏

  • @exodion4173
    @exodion4173 2 года назад +5

    Thankyou for the guide.
    I have 1 question: Im making a food order app, where when the user clicks place order button -> they pay via stripe checkout -> now on the success page I want to add this order (along with total money to charge) to my firebase DB. How can I do this?

    • @DesignCodeTeam
      @DesignCodeTeam  2 года назад +1

      Note that when the user gets to the success page, the charge already went through. You could add the checkout id in the query url as a ref and fetch the checkout details via Stripe API. To add data to Firebase, use Stripe webhook to call to your backend server, it's safer and will be called once only. Hope this helps.

  • @ahmadjaber2940
    @ahmadjaber2940 Год назад

    Is using both return value from stripe and updating my backend + using webhooks as a redundant a good solution?

  • @alifarooq5718
    @alifarooq5718 2 года назад

    I am using the default stripe checkout form ... i want active second Bank Payment on modal load instead of first tabs Card Payment .. how to do it??

  • @saduninimasha4975
    @saduninimasha4975 Год назад

    Can i know how to change price? . In time to time change the customer payment amount. So how to change this amount. Because every payment shows same amount

  • @ranuchaubey90
    @ranuchaubey90 2 года назад

    I have implemented stripe in my project, I'm getting incomplete status in stripe payment dashboard, what should I do

  • @billykiwee
    @billykiwee 2 года назад

    Why all of that whrn a with the payment link di the same...

  • @jafarfahim
    @jafarfahim Год назад

    thanks dear

  • @worldclasscode1847
    @worldclasscode1847 2 года назад +1

    Great tutorial. Easy to listen to. But why don't you use webhooks? :) Just want to say congrats :)

  • @davidhernandez9275
    @davidhernandez9275 2 года назад

    Thank you!

  • @ABUTAHER-wg7gz
    @ABUTAHER-wg7gz Год назад

    hello, i want to update in mongod payment information after checkout stripe payment comfirmed in react

  • @inzamam1320
    @inzamam1320 2 года назад

    Will you help me Actually my CardElement is showing only after i refresh the page

  • @pruthviraju7644
    @pruthviraju7644 2 года назад

    One question is if I want to send the payment details to backend on click of "pay" button. Will it be possible?