PayPal Payments Tutorial with Django and React

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

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

  • @codewithluq
    @codewithluq 3 года назад +6

    Thank you Matt...It has been quite long. Great content. I have to click every ad. That's what I can repay you with

  • @bencipherx
    @bencipherx 3 года назад +3

    Nice one Bro

  • @nurbektaizhanov4534
    @nurbektaizhanov4534 3 года назад +3

    I appreciate your video. Like and comment!

  • @mohamed_bouallegue
    @mohamed_bouallegue 3 года назад +3

    Amazing content as always keep up ♥

  • @ammarjamil2467
    @ammarjamil2467 3 года назад

    Very nice tutorial u explain everything very well thanks for uploading

  •  3 года назад +1

    Nice. Thank you!

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

    fellow Suid African here boet!

  • @jaggyjut
    @jaggyjut 3 года назад

    awesome tutorial. Going to try to build the same with FastApi. Thank you.

  • @mahmedtuny8174
    @mahmedtuny8174 3 года назад

    Awesome thanks

  • @LordFullStack
    @LordFullStack 3 года назад +1

    Why not Vue.js ?

  • @AchwaqKhalid
    @AchwaqKhalid 3 года назад +2

    We want a tutorial for #Advcash implementation instead of -PayPal-

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

    I would also like to incorporate card payments. However, when I looked at the final segment of the video, I couldn't see any card payments. Does this support my needs?
    can anyone recommend docs or videos to integrate Paypal with Django and react?

  • @meirgoldenberg5638
    @meirgoldenberg5638 3 года назад

    The backend does not get an auth token as part of the request sent by PayPal, so how can it know which user purchased the product? Note that the user could use a different email address for the purchase than the one stored in my database...

    • @mattfreire
      @mattfreire  3 года назад

      Agreed those are some issues with the implementation in the video. You can override the create order function in the frontend to send a request to the Django backend which stores the users email in a payment model or some equivalent

    • @meirgoldenberg5638
      @meirgoldenberg5638 3 года назад

      @@mattfreire The backend can also use PayPal API to create the order (much safer!). Webhooks are not needed. This seems to be the correct design.