简体   繁体   English

QuickBooks Online SDK付款信用卡发行

[英]QuickBooks Online SDK Payment Credit Card Issue

I am trying to submit a Credit Card Payment using the QuickBooks Online SDK, but when I run my code I get the following error: 我正在尝试使用QuickBooks Online SDK提交信用卡付款,但是在运行代码时出现以下错误:

Raw Credit Card Number not supported. 不支持原始信用卡号。 Tokenized Credit Card Number Required 需要令牌化信用卡号

Here is what I have. 这就是我所拥有的。 Can anyone explain how I can tokenize the card number using sdk before using it in this manner? 谁能解释以这种方式在使用sdk之前如何使用sdk标记卡号?

public Payment PaymentCreditCard(Order order, ServiceContext qboContextoAuth)
{
    Payment payment = new Payment();
    payment.TxnDate = Convert.ToDateTime(order.DateCreated);
    payment.TxnDateSpecified = true;
    Account depositAccount = Helper.FindOrAddAccount(qboContextoAuth, AccountTypeEnum.Bank, AccountClassificationEnum.Asset);
    payment.DepositToAccountRef = new ReferenceType()
    {
        name = depositAccount.Name,
        Value = depositAccount.Id
    };
    PaymentMethod paymentMethod = Helper.FindOrAdd<PaymentMethod>(qboContextoAuth, new PaymentMethod());
    payment.PaymentMethodRef = new ReferenceType()
    {
        name = paymentMethod.Name,
        Value = paymentMethod.Id
    };
    Customer customer = Helper.FindOrAdd<Customer>(qboContextoAuth, new Customer());
    payment.CustomerRef = new ReferenceType()
    {
        name = customer.DisplayName,
        Value = customer.Id
    };

    payment.PaymentType = PaymentTypeEnum.CreditCard;

    CreditCardPayment creditCardPayment = new CreditCardPayment();
    CreditChargeInfo creditChargeInfo = new CreditChargeInfo();
    creditChargeInfo.BillAddrStreet = order.BillingAddress;
    creditChargeInfo.CcExpiryMonth = Convert.ToInt32(order.CCExpMonth); 
    creditChargeInfo.CcExpiryMonthSpecified = true;
    creditChargeInfo.CcExpiryYear = Convert.ToInt32(order.CCExpYear);
    creditChargeInfo.CcExpiryYearSpecified = true;
    creditChargeInfo.CCTxnMode = CCTxnModeEnum.CardNotPresent;
    creditChargeInfo.CCTxnModeSpecified = true;
    creditChargeInfo.CCTxnType = CCTxnTypeEnum.Charge;
    creditChargeInfo.CCTxnTypeSpecified = true;
    //reditChargeInfo.CommercialCardCode = "Cardcode" + Helper.GetGuid().Substring(0, 5);
    creditChargeInfo.NameOnAcct = order.BillingName;
    creditChargeInfo.Number = order.CCNum;
    creditChargeInfo.PostalCode = order.BillingZip; 
    creditCardPayment.CreditChargeInfo = creditChargeInfo;

    payment.AnyIntuitObject = creditCardPayment;
    payment.TotalAmt = Convert.ToDecimal(order.TotalAmount);
    payment.TotalAmtSpecified = true;
    payment.UnappliedAmt = Convert.ToDecimal(order.TotalAmount);
    payment.UnappliedAmtSpecified = true;

    //Adding the Payment
    Payment added = Helper.Add<Payment>(qboContextoAuth, payment);

    return added;
}

From what I have gathered from the raw API, here is what I need: 根据我从原始API收集的信息,这是我需要的:

https://developer.intuit.com/app/developer/qbpayments/docs/api/resources/all-entities/tokens https://developer.intuit.com/app/developer/qbpayments/docs/api/resources/all-entities/tokens

But I don't seem to be able to find such functionality in the SDK. 但是我似乎无法在SDK中找到这样的功能。 Does anyone have experience doing this? 有没有人有这样做的经验?

Here is the solution to this problem as of today (03/14/19): 截至今天(03/14/19),以下是此问题的解决方案:

public string getCardToken()
{
    string cardToken="";
    JObject jsonDecodedResponse;
    string cardTokenJson = "";
    string cardTokenEndpoint = "quickbooks/v4/payments/tokens";
    string uri= paymentsBaseUrl + cardTokenEndpoint;

    string cardTokenRequestBody = "{\"card\":{\"expYear\":\"2020\",\"expMonth\":\"02\",\"address\":{\"region\":\"CA\",\"postalCode\":\"94086\",\"streetAddress\":\"1130 Kifer Rd\",\"country\":\"US\",\"city\":\"Sunnyvale\"},\"name\":\"emulate=0\",\"cvc\":\"123\",\"number\":\"4111111111111111\"}}";

    // send the request (token api call does not requires Authorization header, rest all payments call do)
    HttpWebRequest cardTokenRequest = (HttpWebRequest)WebRequest.Create(uri);
    cardTokenRequest.Method = "POST";           
    cardTokenRequest.ContentType = "application/json";
    cardTokenRequest.Headers.Add("Request-Id", Guid.NewGuid().ToString());//assign guid

    byte[] _byteVersion = Encoding.ASCII.GetBytes(cardTokenRequestBody);
    cardTokenRequest.ContentLength = _byteVersion.Length;
    Stream stream = cardTokenRequest.GetRequestStream();
    stream.Write(_byteVersion, 0, _byteVersion.Length);
    stream.Close();

    // get the response
    HttpWebResponse cardTokenResponse = (HttpWebResponse)cardTokenRequest.GetResponse();
    using (Stream data = cardTokenResponse.GetResponseStream())
    {
        cardTokenJson= new StreamReader(data).ReadToEnd();
        jsonDecodedResponse = JObject.Parse(cardTokenJson);
        if (!string.IsNullOrEmpty(jsonDecodedResponse.TryGetString("value")))
        {
            cardToken = jsonDecodedResponse["value"].ToString();
        }
    }
    return cardToken;
}

They may add an SDK option to do the same some day, but it's not available as of today! 他们可能会添加一个SDK选项,以便有一天能做同样的事情,但是到目前为止,它还不可用!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM