我正在尝试将masterpass集成到现有的.net应用程序中。我遵循了他们的documentation,但我希望不要单击masterpass按钮并重定向到他们的登录页面以进行身份验证,以使他们的登录页面在弹出窗口或iframe中打开,从而不会强迫用户离开我的结帐页面。有人有运气吗?他们的页面上指出,快速结帐本质上是我要寻找的东西,在美国或加拿大没有。有人找到工作了吗? 我的代码看起来像这样
$(document).ready(function() {
$('#clickMe').click(function () {
masterpass.checkout({
“checkoutId”:”my checkoutId”,
“allowedCardTypes”:[“amex”,”visa”, “etc”],
“amount”:”30.00”
“currency”:”USD”
});
});
});
<script src="https://sandbox.masterpass.com/integration/merchant.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
My Form
<img alt="Checkout with Masterpass" role="button" src="https://static.masterpass.com/dyn/img/btn/global/mp_chk_btn_147x034px.svg" id="clickMe"/>
</div>