#kitem
1 messages · Page 1 of 1 (latest)
Which URL parameters are you wanting to access?
I wanted to pass custom parameters and let Stripe send me back them when it send the code to me to set on my system the connected account
https://connect.stripe.com/oauth/authorize?response_type=code&client_id=" . $stripeClientId . "&scope=read_write&redirect_uri=https://apiendpoint/start_connect?host=$host&auth=$auth
actually there was a typo on that link, this is correct, so I want Stripe send me back the host and auth values when it send me the code
Got it, you can use the state parameter for this: https://stripe.com/docs/connect/oauth-reference#get-authorize-request
oh ok, so i can pass both the values inside that and manage it directly by my backend
I'm trying
Should work, yep!