Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apple pay - How to add merchant name in payment sheet? #310

Open
rgtstha opened this issue Jun 23, 2021 · 8 comments
Open

Apple pay - How to add merchant name in payment sheet? #310

rgtstha opened this issue Jun 23, 2021 · 8 comments

Comments

@rgtstha
Copy link

rgtstha commented Jun 23, 2021

Apple store is rejecting my application because of not adding merchant name in payment sheet after 'pay' in top left corner. Is there any configuration needed to display merchant name in the payment sheet?
Screen Shot 2021-06-23 at 12 07 08

@ldemyanenko
Copy link

Same issue here

@rgtstha
Copy link
Author

rgtstha commented Jul 24, 2021

@ldemyanenko I was able to fix this issue by adding the total amount as the second item.

@ketancts
Copy link

@TiJnAr : Can you post your code snippet?

@dhrubneo
Copy link

In order to add merchant name do we need to make changes in the flutter code? I am also facing the issue, apple is not allowing to go in production. Please assist here

@ndesamuelmbah
Copy link

Any updates on this issue? I am using the Pay package and the merchant name is not displayed. As a result, my app is not able to pass the review and be in production.

@Malik056
Copy link

Malik056 commented Mar 4, 2023

any resolution yet?

@top-kat
Copy link

top-kat commented Jun 29, 2023

Hi,
I just noticed that if the payment is not Immediate, the name will not appear. The text that will appear is also the label of the last item in the cart description.

I hope it will help, unfortunately I am not working with flutter but I think the stripe lib is maybe working the same way.

@bkoznov
Copy link

bkoznov commented Aug 28, 2023

For those who wanted a code snippet:

Stripe.instance.confirmPlatformPayPaymentIntent(
        clientSecret: clientSecret,
        confirmParams: Platform.isIOS
            ? PlatformPayConfirmParams.applePay(
                applePay: ApplePayParams(
                cartItems: [..., ApplePayCartSummaryItem.immediate(
        label: '$MERCHANTNAME', ...
        )], 
        ...
        ```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants