正在加载 Apple Pay 送货地址 No Street

Posted

技术标签:

【中文标题】正在加载 Apple Pay 送货地址 No Street【英文标题】:Loading Apple Pay Shipping Address No Street 【发布时间】:2014-10-22 23:17:31 【问题描述】:

我正在尝试从 Apple 提供的 ABRecordRef 中提取送货地址。我有以下内容,但我的街道总是以nil 的身份返回:

ABMultiValueRef addresses = ABRecordCopyValue(abRecordRef, kABPersonAddressProperty);

for (CFIndex index = 0; index < ABMultiValueGetCount(addresses); index++)

    CFDictionaryRef properties = ABMultiValueCopyValueAtIndex(addresses, index);
    NSString *street = [(__bridge NSString *)(CFDictionaryGetValue(properties, kABPersonAddressStreetKey)) copy];
    NSLog(@"street: %@", street);

我做错了什么?

即使在使用以下调试时:

- (void)paymentAuthorizationViewController:(PKPaymentAuthorizationViewController *)controller
                  didSelectShippingAddress:(ABRecordRef)customShippingAddress
                                completion:(void (^)(PKPaymentAuthorizationStatus status, NSArray *methods, NSArray *items))completion

    NSLog(@"%@", ABRecordCopyValue(customShippingAddress, kABPersonAddressProperty);
    completion(PKPaymentAuthorizationStatusSuccess, ..., ...);

我得到这个没有街道:

ABMultiValueRef 0x17227fbc0 with 1 value(s)
    0: Shipping (0x17227fa00) - 
    City = "Marina del Rey";
    Country = "United States";
    State = California;
    ZIP = 90292;
 (0x172447440)

编辑

我在访问姓名和电话属性时也遇到了问题:

NSString *name = (__bridge_transfer NSString *)(ABRecordCopyCompositeName(abRecordRef));

NSString *fname = (__bridge_transfer NSString *)ABRecordCopyValue(abRecordRef, kABPersonFirstNameProperty);
NSString *lname = (__bridge_transfer NSString *)ABRecordCopyValue(abRecordRef, kABPersonFirstNameProperty);

if (!name && fname && lname) name = [NSString stringWithFormat:@"%@ %@", fname, lname]; 
NSLog(@"name: %@", name); // nil

这是创建 PKPaymentRequest 的方式:

PKPaymentRequest *pr = [[PKPaymentRequest alloc] init];    
[pr setMerchantIdentifier:@"********"];
[pr setCountryCode:@"US"];
[pr setCurrencyCode:@"USD"];
[pr setMerchantCapabilities:PKMerchantCapability3DS];
[pr setSupportedNetworks:@[PKPaymentNetworkAmex, PKPaymentNetworkVisa, PKPaymentNetworkMasterCard]];

[pr setPaymentSummaryItems:[self paymentSummaryItems]];

[pr setRequiredBillingAddressFields:PKAddressFieldAll];
[pr setRequiredShippingAddressFields:PKAddressFieldAll];

[pr setShippingMethods:[self supportedShippingMethods]];

【问题讨论】:

【参考方案1】:

事实证明,Apple 在这方面的文档不是很好,但问题是在 paymentAuthorizationViewController:didSelectShippingAddress:completion: 的委托回调中,总是返回了部分地址。修复方法是在回调中设置它:

- (void)paymentAuthorizationViewController:(PKPaymentAuthorizationViewController *)controller
                       didAuthorizePayment:(PKPayment *)payment
                                completion:(void (^)(PKPaymentAuthorizationStatus))completion

    // Use this instead.
    [payment shippingAddress];

我还删除了设置所需帐单地址的调用(可能是一个单独的错误)。

【讨论】:

正确。出于安全目的,仅返回部分地址,这足以计算运费以在用户验证付款之前显示。一旦通过身份验证,用户基本上已批准访问他们提供的完整地址,否则无法发货。 请记住,加拿大和英国的邮政编码不会作为完整的邮政编码(仅部分)返回,这可能会使计算这些国家/地区的某些承运人的运费变得更加困难。跨度>

以上是关于正在加载 Apple Pay 送货地址 No Street的主要内容,如果未能解决你的问题,请参考以下文章

Apple pay 带有无效的送货地址

Apple Pay 弹出窗口未显示特定的默认送货地址

如何使用 JavaScript 从 Apple Pay 获取与 Apple Pay 帐户关联的用户电子邮件地址

Apple Pay - canMakePayments Using Networks 在应用程序首次运行时返回 NO。

删除 PayPal Express Checkout 中的送货地址选项

Apple Pay 检测 Wallet 没有信用卡