#cool_donation-applepay
1 messages ¡ Page 1 of 1 (latest)
đ 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.
@cunning kindle I'm happy to help. What's blocking you exactly?
cool_donation-applepay
If you don't know where to even start, the best approach would be to use our no-code solution to accept donations via PaymentLinks. See https://docs.stripe.com/no-code/payment-links
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?
I also have a test link at the moment - I'm not sure if that matters or not
My colleague @fiery mural is taking over, if you can share your exact code and the error they can help further
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
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
I see an account ID, but no merchant ID, is that the same?
Yes, the ID should starts with acct_
acct_1PwqwZ09UgtGgulU
Thanks for the ID.
I can see that you have only one payment link, and its URL is different from https://buy.stripe.com/test_dR6dUwbflbpK3PWfY
Basically you are missing a "Y" in the URL, the correct URL is https://buy.stripe.com/test_dR6dUwbflbpK3PWfYY
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?
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.
i see, thank you!