question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

iOS: build not approved because Apple Pay misses " Merchant's name on the payment sheet"

See original GitHub issue

hello, i was submitting a bug fixing to my app already present in the iOS store but today they refused it because of this message: image

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?

image

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
ciccillejucommented, Jan 19, 2022

@ciccilleju Hi, thanks for quick response! We want to know your app infomation. If possible, please write to #145 . Thanks.

Will do within one hour

0reactions
rdlabocommented, Jan 19, 2022

@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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found