#cool_donation-applepay

1 messages ¡ Page 1 of 1 (latest)

lean hearthBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1283574932630011904

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

scarlet ember
#

@cunning kindle I'm happy to help. What's blocking you exactly?

#

cool_donation-applepay

cunning kindle
#

Thank you for your help. So I have a payment link setup, and i'm trying to simply display it in the ios app using a WebView, but i'm getting an accessdenied error. I'm not sure if this is expected or not; is there any way to implement the payment link into the ios app?

lean hearthBOT
cunning kindle
#

I also have a test link at the moment - I'm not sure if that matters or not

scarlet ember
#

My colleague @fiery mural is taking over, if you can share your exact code and the error they can help further

cunning kindle
#

Sounds good, thank you!

#

struct PrivacyPolicyView: View {
var body: some View {
NavigationView {
WebView(url: URL(string:
"https://buy.stripe.com/test_dR6dUwbflbpK3PWfY")!)
.navigationTitle("")
.navigationBarItems(trailing: Button("Done") {
// Dismiss the modal
dismiss()
})
}
}

@Environment(\.dismiss) var dismiss

}

#

I have the same error when testing on my physical device

fiery mural
#

Hi @cunning kindle I'm taking over, give me a sec to go through the past conversations

#

Can you share with me your merchant ID? you can find it from the Stripe Dashboard -> Settings ->Account Details

cunning kindle
#

I see an account ID, but no merchant ID, is that the same?

fiery mural
#

Yes, the ID should starts with acct_

cunning kindle
#

acct_1PwqwZ09UgtGgulU

fiery mural
#

Thanks for the ID.

cunning kindle
#

Oh my, my apologies, thank you

#

One more question: is it possible to integrate with Apple Pay in an ios app (https://docs.stripe.com/apple-pay?platform=ios&lang=ruby#setup-server-side) without having my own server with endpoints running? I don't currently hsot my own server so it would be convenient if this wasn't required.

Similarly, if using payment links, is there a way to fetch information about the subscriber through an api without a server? Or does that require a server as well?

Allow customers to securely make payments using Apple Pay on their iPhone, iPad, or Apple Watch.

fiery mural
#

The easiest way is to use payment link, our no-code solution, so that you don't need to host your own server.

#

And no, I don't think you can use Stripe backend API without a server.

cunning kindle
#

i see, thank you!