All Questions
19 questions
0
votes
1
answer
419
views
React Native Stripe Direct payment from customer to driver
I am building a react native texi booking application where the app has two roles one is user and other driver. User book a ride and user pay the charges to driver. The payment gateway I am using is ...
1
vote
2
answers
798
views
Android Stripe Saved card missing from payment sheet
After fetching the customerId, ephemeralKey and clientSecret, I initialize the PaymentSheet with a Configuration object (which includes the app name, customerConfiguration(customerId, ephemeralKey and ...
3
votes
1
answer
322
views
Show hourly price on Stripe payment instead of deposit price
For a rental company, we need to set up deferred payment.
When a user rents an item we must lock $25 on his credit card (a deposit).
He will be charged $1 per hour. If he returns his item within 5 ...
0
votes
1
answer
1k
views
When confirming payment intent with Stripe the funds are being hold but the API returns as failed
I am trying to hold funds on the customer card until the trip has been completed.
On the server:
> const capture = await stripe.paymentIntents.create({
> customer: stripeId,
> ...
2
votes
0
answers
760
views
Open bank application is failing with Flutter WebView and StripeCheckout
I use Stripe Checkout in a WebView in Flutter.
During the payment flow using Ideal (Netherlands based banking system) the flow tries to open an external app and sends a URL like the following:
nl....
1
vote
2
answers
406
views
How payment api's can bill automatically?
Is there Mobile API for Android that have an option to charge clients automatically or in the end of the month? And also can handle wallet information? (I don't want to keep card information on my own ...
3
votes
0
answers
3k
views
How to confirm payment intent via Stripe SDK?
I'm developing the Android app for now and I need to implement payment using the Stripe. I'm trying to confirm a payment intent but nothing happens. Any ideas, what should I do?
I wrote this one ...
0
votes
1
answer
2k
views
Getting status "Incomplete" on stripe always
I'm always getting incomplete at onCompletePayment and I'm also checked stripe sample app but it's also not working for me. I have check lot but I unable rectify the issue.
So what's would be error ...
1
vote
0
answers
151
views
Shall I integrate Stripe payment with app or website?
I am building an app across iOS and Android mobile phones which processes payment functions and I decide to use Stripe.
I am wondering what is the best practice before coding. I could potentially ...
0
votes
0
answers
103
views
Srtipe cause android studio gradle error
I have these dependencies in my Gradle and when I sync the project the compile 'com.android.support:appcompat-v7:24.2.1' gives me and error that says it not compatible with the other libraries. when I ...
1
vote
1
answer
87
views
Make Stripe service a dynamic payment service
I want to use Stripe's service in my Android app. In my app there will be some kind of a store with different sellers and not only one, similar to ebay.
I have 2 questions about this service:
1) Can ...
1
vote
1
answer
517
views
Is it possible to pay from an Android App without a server of mine?
I want to purchase from my Android app, and I want to pay with an API like Stripe, or Paypal, but if I understood well I have to have a server side where the payments are done, and I only have to use ...
3
votes
1
answer
967
views
Stripe payment Android
I want to create payment using Stripe Api i created every thing in android and now i can get the token but he said send it to your server the problem that i can't find the server code or web service ...
0
votes
1
answer
234
views
AndroidPay unrecoverable error in onActivityResult
I'm trying to use the AndroidPay API. I set the environment to WalletConstants.ENVIRONMENT_SANDBOX
but when I click the Pay button in the onActivityResult my errorCode is 8, and it returns the ...
1
vote
0
answers
1k
views
Stripe: 3D-Secure on the Android SDK
On my Android project, I have been given the task of implementing 3D-Secure support using Stripe. I see that the SDK so far doesn’t have a facility to add a “3d_secure” object to the card parameters. ...