我正在尝试在我的 android 模拟器中运行的本地网站上测试 Google 的 PaymentRequest api。但是,当我这样做时
var paymentRequest = window.PaymentRequest(//some object here//);
我收到以下错误
"Error: Failed to construct 'PaymentRequest': Must be in a secure context
现在,PaymentRequest 确实在 localhost 和 https 上运行,但从 android 模拟器上的端口运行它,uri 所在的端口10.2.2.01:8000/myUrlHere
将失败,因为它不是 localhost。关于如何解决这个问题的任何想法?