curl https://connect.stripe.com/oauth/token \ -d client_secret=CLIENT_SECRET \ -d code=AUTHORIZATION_CODE \ -d grant_type=authorization_code
{ "token_type": "bearer", "stripe_publishable_key": PUBLISHABLE_KEY, "scope": "read_write", "livemode": false, "stripe_user_id": USER_ID, "refresh_token": REFRESH_TOKEN, "access_token": ACCESS_TOKEN }
Test #1 - Assign default value and set “Send Default Value” to yes, default value is sent in the request data! (Success)
Test #2 - Assign default value and set “Send Default Value” to no, assign in code input parameter value, no request data is sent (failed) I instructed the app not to send the default value, the app did not send the default value that is good, but it also did not send the input parameter value that I assigned either!