#quantumcoder_code
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/1347472186604257361
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! Please note that the Flutter Stripe SDK is not owned or maintained by Stripe, so we can't really provide much assistance regarding it.
I'm aware they have an example here : https://github.com/flutter-stripe/flutter_stripe/tree/main?tab=readme-ov-file#run-the-example-app, maybe you'll probably want to use that as reference.
Also, just so you're aware, Tokens are considered as deprecated at this point. You'll want to create Payment Methods instead.
So i can't use tokens?
Can i do accept payment from backend without open payment intent on web and just share card details through API to backend?
So i can't use tokens?
you can if you want, it still works, but I strongly discourage it since you won't be able to use new features that are built on Payment Methods instead
Can i do accept payment from backend without open payment intent on web and just share card details through API to backend?
This is only allowed if you meet the requirements listed here : https://support.stripe.com/questions/enabling-access-to-raw-card-data-apis
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
May i know which feature i won't able to use because i only wants to use 3 feature for accepting payments from customer on mobile app
- Card Payment
- Apple Pay
- Google Pay
Is there a reason why you are not using Payment Methods?
currently we're only giving these 3 options for now
Could you please explain why you want to use Tokens instead of PaymentMethods?
As flutter stripe library is not maintain by stripe so i want to secure my system on a backend side i'm using official stripe php SDK that's why i want to use token instead of payment methods and we're only targeting Canadian public only
In the canada user's most prefer payment options are Card, Apple Pay ad Google Pay only
They don't trust other options
Thanks for the info! However, I think there’s a bit of confusion here. As I mentioned before, you should really be using Payment Method objects instead of Tokens. Payment Methods are essentially the tokenized object of a payment method. Payment Method objects are supported by all official Stripe SDK libraries : https://docs.stripe.com/api/payment_methods
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you can create Payment Method objects for Card, Apple Pay and Google Pay payment methods. Apple Pay and Google Pay are actually part of the card payment method
Can i get sample code for best practice for dart?
Stripe doesn't have any libraries for dart so we don't have sample code for that