【问题标题】:SagePay merchant session keys - AJAXSagePay 商家会话密钥 - AJAX
【发布时间】:2017-09-06 10:51:21
【问题描述】:

我们正在尝试在一些 JQuery 代码中使用 AJAX 调用与 SagePay API 集成。此特定 API 提供 JSON 响应,例如:

{
"expiry": "2017-09-06T11:20:25.820+01:00",
"merchantSessionKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}

使用下面的代码,我们可以成功地对 API 进行身份验证,但随后会被抛出一个关于 Access-Control-Allow-Origin 的消息。

XMLHttpRequest 无法加载 https://pi-test.sagepay.com/api/v1/merchant-session-keys。对预检请求的响应未通过访问控制检查:请求的资源上不存在 Access-Control-Allow-Origin 标头。 Origin null 因此不允许访问。

以前有人遇到过这个问题吗?

var myAPI = "https://pi-test.sagepay.com/api/v1/merchant-session-keys";
    var myKey = "xxx";
    var myPassword = "xxx";
    var myTokenId = "xxx";

    $.ajax({
        url: myAPI,
        headers: {
            'content-Type': 'application/json',
            'username': myKey,
            'password': myPassword,
            'authorization': 'Basic ' + myTokenId
        },
        method: 'POST',
        dataType: 'json',
        data: {
            'vendorName':'xxx'
        },
        success: function(data){
            console.log(data.merchantSessionKey);
            console.log(data.expiry);
        },
        error: function () {
            console.log('MSK unsuccessful');
        }
      });

【问题讨论】:

    标签: jquery ajax opayo


    【解决方案1】:

    您不应直接使用 jquery ajax 向 SagePay 发出 POST 请求。相反,您必须向服务器发出 ajax 请求,然后服务器将数据发布到 SagePay。您可以在此处获取 php 示例:SagePay drop-in Checkout

    请检查下面我用来执行此操作的 c# 代码。

    html:

    <div id="sagePayDetails"></div>
    <form id="paymentForm"><input type="submit" value="Submit"></input></form>
    

    jquery:

    $.ajax({
    url: "@Url.Content("~/YourServerMethod")",
    type: "GET",
    success: function (data) {
        if (data.Status == "SUCCESS") {
            sagepayCheckout(
            { 
                merchantSessionKey: data.SessionKey,
                containerSelector: "#sagePayDetails" 
            }).form({ formSelector: "#paymentForm" });
        } else {
            showError("Some error occurred, please try again later.");
        }
    },
    error: function (xhr, status, error) {
        showError("Some error occurred, please try again later.");
    }});
    

    c#:

    public JsonResult YourServerMethod(){
    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls |
            SecurityProtocolType.Tls11 |
            SecurityProtocolType.Tls12;
    
    var invokeUrl = "https://pi-test.sagepay.com/api/v1/merchant-session-keys";
    var integrationKey = "*****"
    var integrationPassword = "*****";
    var paymentVendor = "YourVendorName";
    var apiKey = Base64Encode(
        integrationKey + ":" + integrationPassword); //Your method to encode string to Base64
    
    var request = new SagePayEntity.MerchantSessionKeyRequest {
        vendorName = paymentVendor };
    var requestData = new StringContent(
     JsonConvert.SerializeObject(request), Encoding.UTF8, "application/json");
    
    var handler = new WebRequestHandler();
    handler.ClientCertificates.Add(new X509Certificate2(
        Server.MapPath("~/Certificate.crt"))); //Your SSL certificate for the domain
    handler.CachePolicy = new HttpRequestCachePolicy(
        HttpRequestCacheLevel.NoCacheNoStore);
    
    var client = new HttpClient(handler);
    client.DefaultRequestHeaders.Authorization = 
        new AuthenticationHeaderValue("Basic", apiKey);
    client.DefaultRequestHeaders
        .Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
    var response = client.PostAsync(invokeUrl, requestData).Result;
    var result = response.Content.ReadAsStringAsync().Result;
    
    if (response.StatusCode == HttpStatusCode.Created)
    {
        var sageResponse = JsonConvert
            .DeserializeObject<SagePayEntity.MerchantSessionKeyResponse>(result,
            new JsonSerializerSettings
            {
                MetadataPropertyHandling = MetadataPropertyHandling.Ignore,
                DateParseHandling = DateParseHandling.None
            });
        return Json(new { SessionKey = sageResponse.MerchantSessionKey,
            Status = "SUCCESS" },
            JsonRequestBehavior.AllowGet);
    }
    else
    {
        return Json(new { Status = "FAILURE" });
    }}
    

    SagePayEntity:

    namespace SagePayEntity
    {
        public class MerchantSessionKeyRequest
        {
            public string VendorName { get; set; }
        }
    
        public class MerchantSessionKeyResponse
        {
            public string MerchantSessionKey { get; set; }
            public string Expiry { get; set; }
        }
    
        public class Currency
        {
            public static string GBP { get { return "GBP"; } }
        };
    
        public class TransactionType
        {
            public static string Payment { get { return "Payment"; } }
    
            public static string Deferred { get { return "Deferred"; } }
    
            public static string Repeat { get { return "Repeat"; } }
    
            public static string Refund { get { return "Refund"; } }
        };
    
        public class SaveCard
        {
            public static string Save { get { return "true"; } }
    
            public static string DoNotSave { get { return "false"; } }
        }
    
        public class Card
        {
            public string MerchantSessionKey { get; set; }
            public string CardIdentifier { get; set; }
            public string Save { get; set; }
            public string CardType { get; set; }
            public string LastFourDigits { get; set; }
            public string ExpiryDate { get; set; }
        }
    
        public class PaymentMethod
        {
            public Card Card { get; set; }
        }
    
        public class PaymentRequest
        {
            public string TransactionType { get; set; }
            public PaymentMethod PaymentMethod { get; set; }
            public string VendorTxCode { get; set; }
            public int Amount { get; set; }
            public string Currency { get; set; }
            public string Description { get; set; }
            public string Apply3DSecure { get; set; }
            public string CustomerFirstName { get; set; }
            public string CustomerLastName { get; set; }
        }
    
        public class _3DSecure
        {
            public string StatusCode { get; set; }
            public string StatusDetail { get; set; }
            public string TransactionId { get; set; }
            public string AcsUrl { get; set; }
            public string PaReq { get; set; }
            public string Status { get; set; }
        }
    
        public class PaymentResponse
        {
            public string TransactionId { get; set; }
            public string TransactionType { get; set; }
            public string Status { get; set; }
            public string StatusCode { get; set; }
            public string StatusDetail { get; set; }
            public int RetrievalReference { get; set; }
            public string BankResponseCode { get; set; }
            public string BankAuthorisationCode { get; set; }
            public PaymentMethod PaymentMethod { get; set; }
            public _3DSecure _3DSecure { get; set; }
        }
    }
    

    【讨论】:

    • 只是为了说明原因:您的token 应该是secret。只有您的服务器知道它是什么并将其用于服务器到服务器的身份验证。不要永远让它靠近你的前端,如果你不小心释放了它,请更新它。 merchantSessionKey 是在服务器上使用您的token 生成的,这是一个一次性有限生命周期的公共令牌,不能用于模拟您的帐户。
    • @Priyank 你用什么包来暴露 SagePayEntity.MerchantSessionKeyRequest 之类的?
    • @Smithy,我不记得了,因为我们现在已经集成了另一个支付网关,但我想我是从 API 生成的。我已经用我们正在使用的课程更新了我的答案。希望对您有所帮助。
    • @Priyank 太棒了,非常感谢更新。
    猜你喜欢
    • 1970-01-01
    • 2023-02-19
    • 1970-01-01
    • 2017-02-14
    • 2018-03-17
    • 1970-01-01
    • 1970-01-01
    • 2016-11-08
    • 2014-05-31
    相关资源
    最近更新 更多