Web 上使用 Stripe 的 Apple Pay - 从 stripe apple pay 进行域验证时出错

问题描述 投票:0回答:2

我需要使用以下链接在网络上添加 Apple Pay,以将 Apple Pay 集成到我的 kentico 网站上: https://support.stripe.com/questions/enable-apple-pay-on-your-stripe-account

我直接在 Web 服务器上的 Web 根目录中创建了一个物理文件夹,并使用 FTP 将所需的文件复制到该物理文件夹,但出现此错误“您正在查找的资源已被删除、名称已更改,或者暂时无法使用。”同时验证域名。

它没有访问“.well-know”文件夹下的无扩展名文件“apple-developer-merchantid-domain-association”。

Screen Shot - 1

Screen Shot - 2

Screen Shot - 3

visual-studio stripe-payments applepay kentico-12
2个回答
1
投票

您正在文件夹中添加无扩展名文件。您需要在您的 web.config 文件中允许这样做,如下所示。

<system.webServer>
<staticContent>
<mimeMap fileExtension="." mimeType="text/xml" />
</staticContent>
</system.webServer>

0
投票

我也遇到了同样的问题。我检查了错误日志,发现托管提供商正在使用 ModSecurity 阻止它。 我联系了我的托管公司,他们检查了我的帐户,进行了一些设置更改以允许它。问题立即得到解决,现在 ApplePay 可以完美运行了。

© www.soinside.com 2019 - 2024. All rights reserved.