我正在使用https://paddle.com/ as作为我的软件的支付处理器。
我收到来自Paddle的Page Not Found Sorry, the page you were looking for could not be found.的错误,我想知道为什么,我已经像文档上那样正确地做了所有的事情。
我的index.html
<script src="https://cdn.paddle.com/paddle/paddle.js"></script>
<script type="text/javascript">
Paddle.Setup({ vendor: xxxxx});
</script>main.js
payment = () => {
const Paddle = window.Paddle;
const openCheckout = () => {
Paddle.Checkout.open({ product: xxxxxx});
}
return(
<Button variant="primary" onClick={openCheckout}>Subscribe Now!</Button>
)
}发布于 2021-03-17 04:41:31
我也遇到了同样的问题,下面是发生的事情-
我很失望,即使我的域名被批准,我得到的页面找不到而结帐。最后我在没有www的情况下提交了相同的域名,它开始工作了!
Paddle authority真的应该看看这个bug。
发布于 2020-11-30 09:50:56
您可能使用了错误的产品ID。您可以通过在Paddle仪表板的目录部分中获取产品的结帐链接来查找产品ID。
https://stackoverflow.com/questions/65019778
复制相似问题