#mbreazeale
1 messages · Page 1 of 1 (latest)
To be clear, I'm building a stripe app that will call back to my own web application using oauth. So I'm trying to let the user authorize stripe to use my app, but not have to do it again everytime the access token or refresh token expires.
Hey there
Good question, let me check
So yep, I believe https://stripe.com/docs/stripe-apps/oauth outlines what you are looking for.
You should be able to store the access token in the Secret Store API and then retrieve it for later sessions
right, I've got that, but wanting to make sure storing an id-token is just as valid and not frowned upon.
Yeah we encourage it as long as you are already authenticating that user
thanks!