#Leo-keys
1 messages · Page 1 of 1 (latest)
Thanks for clarifying! Do you still have your refresh token - that's how you would roll the key to get a new legacy api key
I don't; I am able to create connected accounts but I cant find where the account api key / refresh token are created in the first place
@dawn estuary you basically can not, we don't return those anymore. This intregration path was deprecated in 2015 and strongly discouraged
Always use your own platform's API keys with the Stripe-Account header: https://stripe.com/docs/connect/authentication#authentication-via-the-stripe-account-header
Im not sure it's related but I am trying to verify a signature from an event on a connected account. As far as I understand, I need to have the account's api key in order to validate that the event came from the correct account - is that correct?
yeah that is totally incorrect. API keys are not even involved in webhook signature verification
I am using the python sdk; when I receive an event, I call stripe.Webhook.construct_event passing the following params:
payload, sig_header, secret, api_key=None - what are the secret and api keys here then?