Hi, I want to integrate no-code checkout in my website. <script src="https://www.paypal.com/sdk/js?client-id=QK8&components=hosted-buttons&enable-funding=venmo¤cy=USD"></script> <div id="paypal-container-"></div> <script> paypal.HostedButtons({ hostedButtonId: "asdf", }).render("#paypal-container-") </script> Now when it is hosted, the paypal payment mode works fine, but when I use credit or debit option. it says "Expected Order ID to be passed". This is no-code checkout so why should I pass order id? I do not have any server from which I can call paypal and generate order.
... View more