Tap to Pay on iPhone

RSS for tag

Accept contactless payments right on iPhone in your payment apps without any extra terminals or hardware.

Posts under Tap to Pay on iPhone tag

103 Posts

Post

Replies

Boosts

Views

Activity

ApplePay Recurring Payment Request
We couldn't find a descriptive reply for the following and we wanted to get additional feedback. We've received a notification about using ApplePayRecurringPaymentRequest in Apple Pay JavaScript for recurring, installment and unscheduled payments. On the page (https://developer.apple.com/documentation/apple_pay_on_the_web/applepayrecurringpaymentrequest) we found a new object (see whole object below) and there are some questions about using and filling the parameters. I hope you will help us for making understanding. The ApplePayRecurringPaymentRequest should be sent only in initial operation? A phrase "required" is meant the parameter is mandatory? Where can we take the lenth for each field? Parameter regularBilling is applied for recurring, installment and unscheduled payments? Parameter trialBilling is applied only for recurring payments? If we sent the regularBilling or trialBilling Apple Pay will authorize a payment automatically without merchant's actions? In which cases do we have to fill ApplePayLineItemType with value “pending”? Parameter amount is whole sum of all payments or current only? Parameter paymentTiming with value: 9.1 "immediate" - when does payment occur when the transaction is complete and sequent payments will occur only after merchant's actions? 9.2. "recurring" - what the different with "immediate"? 9.3. "deferred" - who and how will provide these payments in the future? 9.4. "automaticReload" - when should we use this value? (in description it's not clear) If merchant can't provide recurringPaymentStartDate and recurringPaymentEndDate can we leave them blank or not send? If merchant can't provide recurringPaymentIntervalCount can we leave them blank or not send? Could you describe the usecase with using deferredPaymentDate? Could you describe the usecase with using automaticReloadPaymentThresholdAmount? Is billingAgreement mandatory parameter? Can billingAgreement contain URL on agreement? Is managementURL mandatory parameter? What actions can user make on page via managementURL? And which cases are mandatory? Is tokenNotificationURL mandatory parameter? In which cases will we receive a request via tokenNotificationURL? What kind of params specification should be in tokenNotificationURL (names, lenth, type, mandatory)? dictionary ApplePayRecurringPaymentRequest {required DOMString paymentDescription; required ApplePayLineItem regularBilling; dictionary ApplePayLineItem Unknown macro: { ApplePayLineItemType type; DOMString label; DOMString amount; ApplePayPaymentTiming paymentTiming; Date recurringPaymentStartDate; ApplePayRecurringPaymentDateUnit recurringPaymentIntervalUnit; unsigned long recurringPaymentIntervalCount; Date recurringPaymentEndDate; Date deferredPaymentDate; DOMString automaticReloadPaymentThresholdAmount; }; ApplePayLineItem trialBilling; dictionary ApplePayLineItem; DOMString billingAgreement; required DOMString managementURL; DOMString tokenNotificationURL;};
0
0
1.1k
Apr ’24
Reoccuring Payments with Apple Pay
Im encountering an issue with recurring payments using Apple Pay's tokenization system. The temporary token generated for a transaction isn't designed to be reused for recurring charges, which is causing problems for my merchant's monthly plan. Anyone find a workaround for this? is there a way to disable this temp token for my customers to buy a plan?
0
0
836
Mar ’24
Confirm acceptance of Terms and Conditions for Tap and Pay
i am implementing the Tap and Pay for stripe terminal during this i want to check whether the merchant accepted the terms and conditions or not using the isAccountLinked(using:) but this method requires the parameter - "The token from your payment service provider. This token contains the merchant identifier." i cannot find any other reference for the merchant identifier how to retrieve or how to get it as per stripe support they said you need to contact the apple support.
0
1
1k
Jan ’24
Apple pay "Payment not completed" yet amount captured
Our apple pay integration with the gateway "Checkout.com" is succeeding from Checkout side & the amount is captured (withdrawn from bank account) and confirmed yet on the apple pay popup it fails with a "Payment not completed" error message. Any idea how to resolve this? This is on multiple devices (iPhones, MacBooks) -The request in the headers is a success (200)
0
0
919
Nov ’23
Data transfer using NFC
I am trying to transfer data from one device to another using NFC. I'm trying to figure out if this is possible, I downloaded apple's sample project about CoreNFC, I was able to read NFC Tags (it wasn't a real NFC Tag, rather it was an NFC Tag emulated with an android device). Can I use my iPhone to emulate an NFC Tag to transfer data to another iPhone or Android device?
3
0
4.7k
Nov ’23
ProximityReader PaymentCardRaeder.Token help
Use case:  Use Apple Tap to Pay API to capture the card details and send the captured encrypted card details to end PSP by using our backend. We are following Apple document here https://developer.apple.com/documentation/proximityreader/paymentcardreader/token, its mention here that your payment service provider supplies the string you use to create this token. Below is screenshot for your reference:      Please guide us how we are going to get above mentioned string to create the Token. Any help would be appreciated, thanks in advance
0
0
604
Nov ’23
Payment error:
We are integration with apple pay using amazon_flutter package, and we are receiving the following error: [General] Failed to present in-app payment interface: Error Domain=PKPassKitErrorDomain Code=4 “No entitlement for merchant identifier: XXXXXX” UserInfo={NSLocalizedDescription=No entitlement for merchant identifier: XXXXXX} 2023-11-05 08:27:32.081341+0800 Runner[53987:3815356] [General] Connection to remote alert view service failed Note: XXXXXX is our actual merchant identifier by Amazon payment service for the test environment.
0
0
1.1k
Nov ’23
Integrating TAP TO PAY shows error while uploading the app to app store.
I have created a mechanism for TAP TO PAY in my app and it seems to be working fine while testing locally. I have added the additional capabilities in appstoreconnect for the app as development profile. However, when I try to submit the app to the appstore for testflight I am getting an error which seems to be beacause of the development profile for TAP TO PAY CAPABILITY. I am not sure how to convert the capability to distribution and need help.
1
0
871
Oct ’23
Can I use stripe if apple IAP doesn't support my business rule?
We are currently working on a APP where every user can create multiple institutions and every institution has a monthly or yearly price, but this mean that every user can have multiple subscriptions within the same group! We didn't find a way to do it using renewable IAP subscriptions, in this case, does Apple allow us to use third parties as Stripe?
1
0
803
Sep ’23
ApplePay Recurring Payment Request
We couldn't find a descriptive reply for the following and we wanted to get additional feedback. We've received a notification about using ApplePayRecurringPaymentRequest in Apple Pay JavaScript for recurring, installment and unscheduled payments. On the page (https://developer.apple.com/documentation/apple_pay_on_the_web/applepayrecurringpaymentrequest) we found a new object (see whole object below) and there are some questions about using and filling the parameters. I hope you will help us for making understanding. The ApplePayRecurringPaymentRequest should be sent only in initial operation? A phrase "required" is meant the parameter is mandatory? Where can we take the lenth for each field? Parameter regularBilling is applied for recurring, installment and unscheduled payments? Parameter trialBilling is applied only for recurring payments? If we sent the regularBilling or trialBilling Apple Pay will authorize a payment automatically without merchant's actions? In which cases do we have to fill ApplePayLineItemType with value “pending”? Parameter amount is whole sum of all payments or current only? Parameter paymentTiming with value: 9.1 "immediate" - when does payment occur when the transaction is complete and sequent payments will occur only after merchant's actions? 9.2. "recurring" - what the different with "immediate"? 9.3. "deferred" - who and how will provide these payments in the future? 9.4. "automaticReload" - when should we use this value? (in description it's not clear) If merchant can't provide recurringPaymentStartDate and recurringPaymentEndDate can we leave them blank or not send? If merchant can't provide recurringPaymentIntervalCount can we leave them blank or not send? Could you describe the usecase with using deferredPaymentDate? Could you describe the usecase with using automaticReloadPaymentThresholdAmount? Is billingAgreement mandatory parameter? Can billingAgreement contain URL on agreement? Is managementURL mandatory parameter? What actions can user make on page via managementURL? And which cases are mandatory? Is tokenNotificationURL mandatory parameter? In which cases will we receive a request via tokenNotificationURL? What kind of params specification should be in tokenNotificationURL (names, lenth, type, mandatory)? dictionary ApplePayRecurringPaymentRequest {required DOMString paymentDescription; required ApplePayLineItem regularBilling; dictionary ApplePayLineItem Unknown macro: { ApplePayLineItemType type; DOMString label; DOMString amount; ApplePayPaymentTiming paymentTiming; Date recurringPaymentStartDate; ApplePayRecurringPaymentDateUnit recurringPaymentIntervalUnit; unsigned long recurringPaymentIntervalCount; Date recurringPaymentEndDate; Date deferredPaymentDate; DOMString automaticReloadPaymentThresholdAmount; }; ApplePayLineItem trialBilling; dictionary ApplePayLineItem; DOMString billingAgreement; required DOMString managementURL; DOMString tokenNotificationURL;};
Replies
0
Boosts
0
Views
1.1k
Activity
Apr ’24
Activate Apple pay for in-store payment from my app
Hello everyone, I have a app for Driver to pay in-store (fuel, garage, etc.) and would like to build a feature that can activate Apple Pay from my app so that Driver can use it to pay with POS terminal instead of double click the Home button. Is it possible?
Replies
0
Boosts
0
Views
792
Activity
Apr ’24
Apple pay Wallet -Confusion with Pre-Authorization transaction display
Showing pre-authorization transaction as payment is confusing. It doesn't get removed even if we void the pre-authorization. Has anyone encountered this issue before, and if so, how did you resolve it?
Replies
0
Boosts
0
Views
785
Activity
Mar ’24
Reoccuring Payments with Apple Pay
Im encountering an issue with recurring payments using Apple Pay's tokenization system. The temporary token generated for a transaction isn't designed to be reused for recurring charges, which is causing problems for my merchant's monthly plan. Anyone find a workaround for this? is there a way to disable this temp token for my customers to buy a plan?
Replies
0
Boosts
0
Views
836
Activity
Mar ’24
Additional Capabilities? on Apple Developer Account
I got approved for ProximityReader APIs for Apple Tap to Tay on iPhone. The Setting up the entitlement for Tap to Pay on iPhone guide says to look for "Additional Capabilities." I do not see it under my Certificates, Identifiers & Profiles. Where should I look?
Replies
2
Boosts
0
Views
1.2k
Activity
Mar ’24
Unable to create build for TapToPay on appstoreconnect
I am using TapToPay with stripe it is working fine on the development mode but when i try to create build for app store it shows 2 errors.
Replies
1
Boosts
0
Views
884
Activity
Feb ’24
How to decrypt Payment data
I want to use the ProximityReader Framework's readPaymentCard https://developer.apple.com/documentation/proximityreader/paymentcardreadersession/readpaymentcard(_:)-8jol5 to read card information and decrypt it. Does anyone know how to do this?
Replies
1
Boosts
0
Views
759
Activity
Jan ’24
Confirm acceptance of Terms and Conditions for Tap and Pay
i am implementing the Tap and Pay for stripe terminal during this i want to check whether the merchant accepted the terms and conditions or not using the isAccountLinked(using:) but this method requires the parameter - "The token from your payment service provider. This token contains the merchant identifier." i cannot find any other reference for the merchant identifier how to retrieve or how to get it as per stripe support they said you need to contact the apple support.
Replies
0
Boosts
1
Views
1k
Activity
Jan ’24
Apple pay "Payment not completed" yet amount captured
Our apple pay integration with the gateway "Checkout.com" is succeeding from Checkout side & the amount is captured (withdrawn from bank account) and confirmed yet on the apple pay popup it fails with a "Payment not completed" error message. Any idea how to resolve this? This is on multiple devices (iPhones, MacBooks) -The request in the headers is a success (200)
Replies
0
Boosts
0
Views
919
Activity
Nov ’23
Data transfer using NFC
I am trying to transfer data from one device to another using NFC. I'm trying to figure out if this is possible, I downloaded apple's sample project about CoreNFC, I was able to read NFC Tags (it wasn't a real NFC Tag, rather it was an NFC Tag emulated with an android device). Can I use my iPhone to emulate an NFC Tag to transfer data to another iPhone or Android device?
Replies
3
Boosts
0
Views
4.7k
Activity
Nov ’23
Integerating Apple Pay With Flutter
Hi, I'm new to Payment Integration and i want to use Apple pay as an option in my flutter app. the case is that i want to let my users to be able to send money to each other A.K.A (peer to peer) transactions. I don't know how exactly to achieve this, send money to another specific apple pay user?
Replies
0
Boosts
0
Views
1.2k
Activity
Nov ’23
ProximityReader PaymentCardRaeder.Token help
Use case:  Use Apple Tap to Pay API to capture the card details and send the captured encrypted card details to end PSP by using our backend. We are following Apple document here https://developer.apple.com/documentation/proximityreader/paymentcardreader/token, its mention here that your payment service provider supplies the string you use to create this token. Below is screenshot for your reference:      Please guide us how we are going to get above mentioned string to create the Token. Any help would be appreciated, thanks in advance
Replies
0
Boosts
0
Views
604
Activity
Nov ’23
PassKit Entitlements - Apple Pay
Me and my team are implementing Apple Pay for our products and we've requested the PassKit Entitlements two months ago and until now we did not get any answer about it. How long does it take to Apple disponibilize the PassKit Entitlements?
Replies
1
Boosts
0
Views
1k
Activity
Nov ’23
Payment error:
We are integration with apple pay using amazon_flutter package, and we are receiving the following error: [General] Failed to present in-app payment interface: Error Domain=PKPassKitErrorDomain Code=4 “No entitlement for merchant identifier: XXXXXX” UserInfo={NSLocalizedDescription=No entitlement for merchant identifier: XXXXXX} 2023-11-05 08:27:32.081341+0800 Runner[53987:3815356] [General] Connection to remote alert view service failed Note: XXXXXX is our actual merchant identifier by Amazon payment service for the test environment.
Replies
0
Boosts
0
Views
1.1k
Activity
Nov ’23
How to register with Apple to be PSP for Tap To Pay
I want to register to be Apple PSP for Tap To Pay instead of using their listed PSPs. Does anyone know what to do?
Replies
3
Boosts
1
Views
1k
Activity
Nov ’23
Integrating TAP TO PAY shows error while uploading the app to app store.
I have created a mechanism for TAP TO PAY in my app and it seems to be working fine while testing locally. I have added the additional capabilities in appstoreconnect for the app as development profile. However, when I try to submit the app to the appstore for testflight I am getting an error which seems to be beacause of the development profile for TAP TO PAY CAPABILITY. I am not sure how to convert the capability to distribution and need help.
Replies
1
Boosts
0
Views
871
Activity
Oct ’23
Tap to pay doesn't support on the iphone
hi there. my certificate innclude tap to pay but when upload to Applestore. then getting error. please see the. screenshots
Replies
3
Boosts
0
Views
937
Activity
Oct ’23
External and Internal payments
Hi Apple released external payment for some new regions https://developer.apple.com/documentation/storekit/external_purchase but i don't fully undersant, can i use in one application for allowed region, external payment link, for all others Apple pay. Don't found clear explanations of that
Replies
0
Boosts
0
Views
649
Activity
Oct ’23
Cannot change the credit card information
I would like to renew Apple Developer Program, but cannot change the credit card information, pop up "cannot update....please contact support" when I update credit card information and submit, please advise.
Replies
0
Boosts
0
Views
678
Activity
Oct ’23
Can I use stripe if apple IAP doesn't support my business rule?
We are currently working on a APP where every user can create multiple institutions and every institution has a monthly or yearly price, but this mean that every user can have multiple subscriptions within the same group! We didn't find a way to do it using renewable IAP subscriptions, in this case, does Apple allow us to use third parties as Stripe?
Replies
1
Boosts
0
Views
803
Activity
Sep ’23