Anyone successfully integrated their weweb project w/ stripe connect?

hi everyone! building a marketplace app on weweb + supabase and would love to understand if anyone in the community has successfully integrated w/ stripe connect or any other multi-vendor payout provider. thank you!

1 Like

@waq.war hey I saw an earlier post by you regarding this topic, any luck?

I have done this for subscriptions with payment links

2 Likes

@marketplacebuilder trying to do the same thing here (but haven’t started yet). I’d be happy as well to have an example if someone has done it.
Did you get started already? What issues did you come across? Did you follow the Stripe Connect tutorial series (16 videos) that’s available on YouTube, I thought it was pretty well made: https://youtu.be/vvEo5i6NA5o?si=7KbGV0jQIlWvfIHB

Hi @marketplacebuilder and @Sandrine :wave:

Just to clarify something: please try to integrate Connect with your backend, not WeWeb. Stripe has excellent documentation on how to do this. Use payment links or Stripe checkout. Please do not try to use the WeWeb Stripe plugin for this, as it is meant only for basic transactions.

1 Like

second danlopes. If youre using supabase, edge function work well for this. (advice curtesy of @Broberto on my previous thread)

2 Likes

haven’t started yet; still waiting for my EIN before I get started w/ Connect. Will update here on progress, but it seems I’ll just be working w/ edge functions + Checkout to enable ticketing + ecommerce!

Following; we plan to do a Stripe connect integration for an event management/ticketing SaaS we’re building and it’d be great to share knowledge with one another here.

1 Like

Hello everyone,

I’ll start my integration between Weweb/Supabase and Stripe Connect.
As told by Matthew it would be nice to share our knowledge. If anyone had success with Stripe Connect integration, I’m keen to discuss it before going hands-on.

Thanks all, and good luck for your projects

1 Like

Great, Popi! It’s still on our to-do list for the future, but we aren’t sure when we’ll be able to do it. Keep us posted with what you figure out. Looking forward to hearing from you and growing our shared knowledge together.

I got it working w/ direct charges- so you basically have to just create a lot of edge functions to interact w/ stripe api. At minimum you’d need to create 3 core edge functions: 1) create new connect account, 2) fetch connect account given stripe ID, and 3) create new direct charge. And then just set up a webhook to update your Supabase table w/ successful payments, etc.