iOS: build not approved because Apple Pay misses " Merchant's name on the payment sheet"
See original GitHub issuehello, i was submitting a bug fixing to my app already present in the iOS store but today they refused it because of this message:
this is my code related to Apple Pay:
`async createApplePay(): Promise<void> {
let requestUrl = this.generateStripeIntentWallet;
let postData = { idOrdine: this.idOrdine };
this.http.doPostApplicationJsonBearer(requestUrl, postData, this.myService.tokenValue).subscribe((res => {
this.paymentIntent = res.id;
Stripe.createApplePay({
paymentIntentClientSecret: res.client_secret,
paymentSummaryItems: [{
label: this.utilsOmbrelloniProvider.idOrdine,
amount: this.utilsOmbrelloniProvider.totale
}],
merchantIdentifier: 'mymerchant.xxxxxx',
countryCode: 'IT',
currency: 'EUR',
}).then(() => {
Stripe.isApplePayAvailable().then(() => this.isApplePayAvailable = true);
}).catch(error => {
console.log(error);
});
}));
}`
this is what i found in the iterface:
export interface CreateApplePayOption { paymentIntentClientSecret: string; paymentSummaryItems: { label: string; amount: number; }[]; merchantIdentifier: string; countryCode: string; currency: string; } export interface CreateGooglePayOption { paymentIntentClientSecret: string; }
I don’t see any variable related to the merchant’s name.
How can I solve this problem with Apple? There is any way to set Merchant’s name on the payment sheet?
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Apple Pay Merchant Identifier miss… | Apple Developer Forums
It's time for me to update my Apple Pay merchant identity and payment processing certificates. The first step is to go to the...
Read more >iOS 10 Beta 3 + Apple Pay Web | Apple Developer Forums
I am able to see the payment sheet when i installed Beta 3 version. However, looks like merchant validation is not happening properly,...
Read more >TN3103: Apple Pay on the Web troubleshooting guide
This document assumes that you are building Apple Pay on the Web from your own website and then integrating with a third-party Payment...
Read more >Apple Pay | Apple Developer Forums
Hi everyone, I'm build an App with Catalyst for Mac, iPhone and iPad. ... (with Stripe API) it always returns false and the...
Read more >Apple Pay on the Web Debugging Guide
You are requesting a payment session for a domain other than what you are testing on. · If your Merchant Session is considered...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Will do within one hour
@ciccilleju Hi, thanks for quick response! We want to know your app infomation. If possible, please write to https://github.com/capacitor-community/stripe/issues/145 . Thanks.