#mxd
1 messages · Page 1 of 1 (latest)
Can you describe more what you're trying to achieve?
Yes so Im building 2 flask apps, where the sign ins use social social-ins or email/password, then once sign-up, paid features, require an upgrade to a paid membership (all in a python flask app context) with a caveat being a hub and spoke model where a sister application (the second flaskapp) can be logged into with the same credentials and paid membership (if that makes sense)
Ok so log-in/authentication functionality for your app shouldn't have anything to do with stripe, right?
the paid membership would be stripe
Right. So what Stripe functionality are you looking for? Application log-in isn't a stripe feature
you'd need to implement your own authentication
ahh
stripe just does the webhook thing
ok got it, so roll my own authentication, and then a webhook type thing would provision access and communicate with the authentication
for stripe
yeah auth would be handled entirely in your application. you could use webhooks to provision access and store that data in your database
storing like a session id or key (is the thing being stored)?