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
4
votes
1 answer

Unable to dismiss PKPaymentAuthorizationViewController

I am working on implementing Apple Pay for my Application. While I have everything mostly figured out, I am not able to dismiss the PKPaymentAuthorizationViewController that authenticates. Here is my code.. -(void) viewDidAppear:(BOOL)animated { …
Rushabh
  • 651
  • 5
  • 15
4
votes
1 answer

Apple Pay - Payment backend server - iOS

I have been reading the Apple developer documentation website about Apple Pay and have been going through other tutorials online about how to integrate Apple Pay into your iOS apps. All of the sites I have been on indicate that you need a backend…
user4657588
4
votes
3 answers

Apple pay PKPaymentauthorizationViewController always returning nil when loaded with Payment request

I am getting the PK Payment auth view controller instance returned as nil. What is wrong with this code? if([PKPaymentAuthorizationViewController canMakePayments]) { if ([PKPaymentAuthorizationViewController …
Itzdsp
  • 872
  • 11
  • 22
4
votes
1 answer

Apple pay merchant id in Apple Wallet - can it be updated dynamically?

Our iOS App provides on line ordering capability to various merchants who are part of our network. We want to create unique merchant identifier and matching certificate for each merchant. My question is this: Can we update the Apple Wallet…
Curious
  • 41
  • 1
4
votes
3 answers

ApplePay PKPaymentAuthorizationViewController always shows processing

I am trying to use Apple Pay in my app. It works fine to present PKPaymentAuthorizationViewController. However, after I filled up with credit card and billing information, it just shows a spinning wheel and 'processing' as shown in the picture. The…
Shali Liu
  • 1,174
  • 13
  • 23
4
votes
1 answer

How to test Stripe based Apple Pay?

Currently i am trying to develop a native iOS application where i have to integrate Stripe based Apple Pay, For that i have added the SDK provided by them inside my project. At the final step, i am going to test the apple pay functionality but i am…
raaz
  • 12,410
  • 22
  • 64
  • 81
3
votes
1 answer

Apple and Google Pay with React Native and Expo

I am trying to set up apple and google pay for an app and I am struggling to find any good documentation on how to do this. I am using React-Native with expo and was wondering if anyone could share any documentation on how to implement this…
Will
  • 43
  • 2
3
votes
1 answer

What is the google pay equivalent of Apple Pay canMakePayments() method?

I want to see if there is a way to quickly check on the mobile web on chrome whether or not a user has Google Pay enabled. On IOS, I can call window.ApplePaySession.can make payments() method on safari dev tools to instantly know if the user has…
3
votes
0 answers

Use firebase functions with Apple Pay

I want to integrate with Apple Pay on my website using the Apple Pay JS API, but my call to Apple is failing. We are using Firebase Functions to run our server, and Firebase Hosting to host our website. To do this, I need to request an Apple Pay…
3
votes
0 answers

Flutter : Could not add card in apple pay

I have integrated apple pay into my flutter app using a plugin flutter_pay: ^1.0.2, I had followed the below steps:- Added tester in the sandbox with United states region and enable apple pay. Change region and date and time in iPhone to United…
Urvashi kharecha
  • 625
  • 1
  • 9
  • 26
3
votes
0 answers

ApplePaySession is not defined no-undef error in React

I am just trying to validate whether apple pay is supported on browser or not with following code. But it gives error on safari (ipad) / macbook. ApplePaySession' is not defined no-undef Following code, I had written in ReactJs. if…
Vikas Hiran
  • 41
  • 1
  • 6
3
votes
2 answers

How can I integrate Apple Pay JS with angular

I'm looking into integrating Apple Pay into my checkout page. How to check whether the Apple Pay JS API is available in the browser by verifying that the ApplePaySession class exists. When I gave the condition, if (window.ApplePaySession &&…
3
votes
1 answer

Replacing CoreNFC UI in readerSession?

Is it possible to open an NFCReaderSession or NFCNDEFReaderSession, making tags readable in app using CoreNFC framework WITHOUT opening the bottom modal session? I want to use the functionality of CoreNFC but I would essentially like to design the…
Mike Perhats
  • 533
  • 1
  • 7
  • 11
3
votes
2 answers

How to serve static file from Asp .Net Core with period in directory name

I am currently trying to associate Apple Pay with a website. In order to verify the domain, Apple Pay requires that the website be able to serve a specific static file at…
Mike Moore
  • 1,330
  • 1
  • 14
  • 20
3
votes
1 answer

Apple Pay Payment Token Example

How can I somehow obtain an example of an Apple Pay Payment Token (as described here) without actually requesting a payment from Apple using an Apple Device? I am creating an endpoint that will accept the Apple Pay payment token exactly as it is…
AnonymousAngelo
  • 996
  • 3
  • 15
  • 37