Just a quick one regarding Stripe Express, is there an accepted best method of connecing to stripe express. I understand some have used plugins to connect to stripe others have used custom API calls , from what I understand to connect to Stripe Standard the plugins are great however for Express connection an API must be built out.
Is this correct and if so can anyone show me, sell me or direct me in the direction of something that is already set up?
Iām also interested in this functionality. I have a hiring platform and would like to sign up all users (persons paying plus person being paid) without a redirect or hitting the Stripe website at all.
Stripe Express still redirects to the Stripe site for onboarding, you need the custom version I think.
Not that I know of, last time I integrated Stripe connect I used standard, just made my own API calls and such. You can integrate Express or custom yourself or pay someone to do it. Itās not a walk in the park but certainly possible, they have very good documentation.
Yes, itās the custom version I need. I was hoping that the stripe.js plugin might help with this, but the lack of available documenation has really set it back.
Yeah, thereās very little documentation at the moment for Stripe.js, that is said to change in stripe.js 2.0. Building out stripe.js 2.0 is taking forever, maybe it will never be released. Even if itās finished it might not have connect capabilities either and other features you might need. I just ended up setting up my own API connections to Stripe.
I guess Iāll give the API route a try. Regarding your Connect Standard installation, whatās a rough overview of your workflow, and does it serve your needs well?
Ideally I would like everything āon platformā and not have the additional onboarding with Stripe Connect for sellers. My initial thoughts are that if I do have to go the standard (or express) route with Stripe onboarding, it might be worth getting that out the way early in the process at user sign up.
It depends, I made it so users can optionally be sellers when they choose. Given they have also fulfilled certain criteria.
I did this about a year ago and Iām no longer working on the app, sorry I donāt remember much. I think you have a more legal responsibilities when you go custom. I encourage you to learn as much as you can from the Stripe documentation and the Stripe API documentation.
Thanks for the feedback. The webapp is a employer/employee website, so I do need to sign up certain users at some stage. Iāll work on this and report back at some point.
It is my understanding as well that the only way to use Stripe Express is for you to build the API connector for it. Once you register the seller using this API connecter, you can use the Bubble Stripe plugin to charge a user, transfer to seller, etc. Iām in the process of trying to implement this but I get stuck on Step 4 of Using Connect with Express accounts | Stripe Documentation.
I was able to get the API properly set up as an OAuth provider using the following API connector. The seller registration works and re-directs back to my website. However I realized that I was going to need an extra step because transferring a payment to this seller did not work (error: payee was not found). I believe this missing step is Step 4 of the Stripe docs referenced above.
However when I initialize the call, it prompts me with an error message that the API key does not exist. The API key listed does not match any of my Stripe API keys so Iām not sure where itās pulling this from.
Is that user profile endpoint correct? Iām trying to set this up myself and the custom account curl is curl https://api.stripe.com/v1/accounts (not account)
Hey there. Sorry for the late reply. I havenāt done much with stripe integration since that last message because of the festive season. Hopefully Iāll get.chance to give this a go now that stripe have allowed me connect access.
Iāll send an update of I manage to get anything working, hopefully youāll do the same.