Questions tagged [applepay]

A payment method created by apple to pay for goods online or offline.

Apple Pay was made available in iOS 8. It uses Touch ID for security as well as track shipping and payment information all in one place.

More Information:

743 questions
7
votes
0 answers

How to use applicationData in PKPaymentRequest (ApplePay)?

I want to set pass through variable on Apple Pay, I set the NSDictionary as JSON data like: PKPaymentRequest *request = [[PKPaymentRequest alloc] init]; [request setApplicationData:[NSJSONSerialization dataWithJSONObject:@{@"name":@"USER_NAME"}…
ajay agrawal
  • 247
  • 4
  • 9
7
votes
2 answers

Apple Pay is not available in "APP"

Thanks in advance I am using Apple Pay in my application, i registered new merchant id in Apple and certificate from payment gateway. By using this merchant id, payment summery sheet is opening but when i select pay getting error message as…
sudir27
  • 71
  • 1
  • 5
7
votes
2 answers

Issue with Apple Pay / Stripe integration

I have followed Stripe's documentation and Example App on integrating Apple Pay. In the handlePaymentAuthorizationWithPayment method, under createTokenWithPayment, I am getting the error: Error Domain=com.stripe.lib Code=50 "Your payment…
May Yang
  • 523
  • 1
  • 5
  • 18
6
votes
3 answers

Apple Pay "mass enablement" error when requesting a Payment Session

I'm working with a web application that allows our customers to integrate with Apple Pay on the web. The customers setup their own Apple Pay merchant accounts, a third party handles the actual payment processing, but our servers are responsible for…
starwed
  • 2,536
  • 2
  • 25
  • 39
6
votes
2 answers

Issue with Apple Pay integration in iframe

I recently started integrating Apple Pay into my website which actually loads the payment view in an iframe. Here the catch is my iframe loads in a different domain than my website. I followed the developer.apple.com site to integrate the Apple Pay…
iOS dev
  • 470
  • 7
  • 23
6
votes
1 answer

Unable to access Phone no, First-Last Name, Street from PKContact inside PKPaymentAuthorizationViewController delegate method didSelectShippingContact

I am integrating Apple Pay using PKPaymentAuthorizationViewController and its delegate methods. When user changes the Address the below delegate method gets triggered: - (void)paymentAuthorizationViewController:(PKPaymentAuthorizationViewController…
Suraj Mirajkar
  • 1,369
  • 10
  • 23
6
votes
0 answers

ApplePaySession.canMakePaymentsWithActiveCard not working in private mode

I have implemented Apple Pay on my website. If the payment method is configured it shows 'Checkout with Apple Pay' and if the payment method not configured then it shows 'Setup Apple Pay'. I am using ApplePaySession.canMakePaymentsWithActiveCard()…
Poorvi Nigotiya
  • 438
  • 1
  • 4
  • 16
6
votes
3 answers

Contactless Payments: Detect Mobile Device or Card

I'm trying to detect whether a contactless enabled smartcard or a mobile device equipped with ApplePay, Google Pay, or Samsung Pay was used for a contactless EMV transaction. I have been researching via the EMV books, and there seems to be a tag…
raydowe
  • 1,285
  • 1
  • 16
  • 31
6
votes
1 answer

Apple Pay error: Add Merchant ID to your App ID

I've followed every step in setting up the Apple Pay certificate and my Merchant ID is set up and added to the App ID on my Apple Developer Account, but Xcode is still showing me an error that i need to "Add Merchant ID to App ID". I think my…
Friendly-Robot
  • 1,124
  • 14
  • 24
6
votes
0 answers

PassBookUiService quit unexpectedly

i am implementing apple pay with stripe. I followed official documents of stripe. so Whenever i clicked a buy with apple button it doesn't show the payment sheet. and it show's an error like "passbookUiSevice quit unexpectedly". and also…
Lahari Areti
  • 627
  • 2
  • 10
  • 30
6
votes
1 answer

ApplePay canMakePaymentsWithActiveCard Promise returns false

ApplePay canMakePaymentsWithActiveCard Promise returns false on a Mac Safari, but true on iPhone Safari. canMakePayments returns true on both. I'm using a sandbox Apple developer account with test credit cards that Apple provided. Any idea why…
olya777
  • 103
  • 1
  • 7
6
votes
1 answer

Multiple Apple pay merchant Ids on multiple developer accounts

I have a project with a number of different build configurations, 4 for one developer account and 3 for another, each having production, alpha and beta build configurations and the first having a debug configuration. all 7 have different bundle…
richy
  • 2,716
  • 1
  • 33
  • 42
6
votes
2 answers

iOS how to take user directly to the Wallet app

I'm integrating Apple Pay now and I see iOS Human Interface Guidelines for Apple Pay. https://developer.apple.com/ios/human-interface-guidelines/technologies/apple-pay/ How can I open the Wallet app when the user taps a button?
Capella
  • 881
  • 3
  • 19
  • 32
6
votes
6 answers

Azure websites .well-known route becomes inaccessible

I am trying to make the file: .well-known/apple-developer-merchantid-domain-association accessible via my Azure website. I have added this to the route config: routes.MapRoute( name: "ApplePay-MacOS", url:…
Daniel Haddon
  • 215
  • 3
  • 9
6
votes
3 answers

Apple / Android pay in nativeScript

what is the best way to use Apple / Android pay in nativeScript for in App purchase? Is there any plugin around? Can anyone give me a direction?
Timo Schnoelzer
  • 105
  • 1
  • 7
1 2
3
49 50