gpt4 book ai didi

ios - Braintree Apple sandbox Pay 在扫描指纹 iOS 后显示付款未完成错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:59:06 26 4
gpt4 key购买 nike

我已经实现了支持 Apple Pay 的 Braintree。但我面临一个问题。一切运行正常,但每当我尝试付款时,它都会显示“付款未完成”标志。我已检查我的域是否已通过验证。我用下面的代码调用了 Apple Pay 按钮。

- (PKPaymentRequest *)paymentRequest
{
PKPaymentRequest *paymentRequest = [[PKPaymentRequest alloc] init];
paymentRequest.merchantIdentifier = @"merchant.myIdentifier";
//paymentRequest.merchantIdentifier = @"merchant.mysandboxIdentifier";
paymentRequest.supportedNetworks = @[PKPaymentNetworkAmex, PKPaymentNetworkVisa, PKPaymentNetworkMasterCard];
paymentRequest.merchantCapabilities = PKMerchantCapability3DS;
paymentRequest.countryCode = @"US"; // e.g. US
paymentRequest.currencyCode = @"USD"; // e.g. USD
// self.requiredShippingAddressFields = PKAddressFieldPostalAddress;
// paymentRequest.requiredShippingAddressFields = PKAddressFieldAll;

// paymentRequest.shippingMethods = [self ShipingMethod];

// paymentRequest.shippingContact = [self ShipingAddress:@"Delivered" :paymentRequest];
paymentRequest.paymentSummaryItems = [self PaymentSummaryItems];
return paymentRequest;
}


- (IBAction)applePayButtonTouchUpInside:(id)sender
{

self.navigationController.navigationItem.backBarButtonItem.enabled = NO;
self.iconLoadingIndicator.hidden = NO;
[self.iconLoadingIndicator startAnimating];

backBtn.enabled = NO;
self.applePayBtn.enabled = NO;
self.creditCardBtn.enabled = NO;
self.checkoutBtn.enabled = NO;

if([PKPaymentAuthorizationViewController canMakePaymentsUsingNetworks:@[PKPaymentNetworkAmex, PKPaymentNetworkMasterCard, PKPaymentNetworkVisa,PKPaymentNetworkDiscover]]) // Returns FALSE
{
if ([PKPaymentAuthorizationViewController canMakePayments])
{
PKPaymentRequest *paymentRequest = [self paymentRequest];
PKPaymentAuthorizationViewController *vc = [[PKPaymentAuthorizationViewController alloc] initWithPaymentRequest:paymentRequest];
if (vc)
{
self.payment_mode = kApplePayMode;
vc.delegate = self;
[self.navigationController presentViewController:vc animated:YES completion:nil];

}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"Something went wrong. Please Try Again." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
[self StopLoader];
}
}
}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"Your card does not support Apple Pay." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];

[self StopLoader];
}
}

此委托(delegate)未调用,因为它卡在付款未完成的过程中。 enter image description here

- (void)paymentAuthorizationViewController:(PKPaymentAuthorizationViewController *)controller
didAuthorizePayment:(PKPayment *)payment
handler:(void (^)(PKPaymentAuthorizationResult *result))completion API_AVAILABLE(ios(11.0), watchos(4.0));
{
isApplePayInitiatingPayment = YES;

// Example: Tokenize the Apple Pay payment
BTApplePayClient *applePayClient = [[BTApplePayClient alloc]
initWithAPIClient:self.braintreeClient];
[applePayClient tokenizeApplePayPayment:payment
completion:^(BTApplePayCardNonce *tokenizedApplePayPayment,
NSError *error)
{
if (tokenizedApplePayPayment)
{
// On success, send nonce to your server for processing.
// If applicable, address information is accessible in `payment`.
NSLog(@"nonce = %@", tokenizedApplePayPayment.nonce);
self.wcitiesBraintreeCreateTransaction = [[WcitiesBraintreeCreateTransaction alloc] init];
[self.wcitiesBraintreeCreateTransaction CreateTransaction:self.totalPrice OneTimeNonce:tokenizedApplePayPayment.nonce paypal_payer_id:@"" payment_mode:kApplePayMode :^(NSMutableArray *result, NSError *error)
{
if (result.count>0)
{
self.transaction_id = [result objectAtIndex:0];
[self generateClientOrder:NO];
}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"Transaction failure. Please try again." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
[self StopLoader];
}
}];


// Then indicate success or failure via the completion callback, e.g.
PKPaymentAuthorizationResult *result = [[PKPaymentAuthorizationResult alloc] initWithStatus:PKPaymentAuthorizationStatusSuccess errors:nil];
completion(result);
} else {
// Tokenization failed. Check `error` for the cause of the failure.

// Indicate failure via the completion callback:
PKPaymentAuthorizationResult *result = [[PKPaymentAuthorizationResult alloc] initWithStatus:PKPaymentAuthorizationStatusFailure errors:nil];
completion(result);
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"Transaction failure. Please try again." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
[self StopLoader];
}
}];
}

最佳答案

尝试使用 Apple 提供的不同测试信用卡。 https://developer.apple.com/apple-pay/sandbox-testing/

我也遇到了这个问题,通过尝试不同的卡片直到其中一张有效来解决这个问题。

关于ios - Braintree Apple sandbox Pay 在扫描指纹 iOS 后显示付款未完成错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55833666/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com