-
Notifications
You must be signed in to change notification settings - Fork 870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OAuth with client/services pattern #958
Comments
Thanks for the report @andrews05. At first we wanted to focus on the API layer from api.stripe.com for the client so we have not immediately implemented OAuth but I'll tag this as a future change and flag internally. |
Sure, thank you :) |
Thank you guys it's a real pleasure to see this new implementation coming to life. |
@maxleroy I don't have a timeline for this change I'm sorry. This shouldn't be an emergency since it shouldn't impact your integration here. Can you give me a bit more details on what this would change on your end and why you consider it urgent? |
Released in v7.40.0 e.g. $stripe->oauth->token([
'grant_type' => 'authorization_code',
'code' => $_REQUEST['code']
]); |
I'm using the new client/services pattern (StripeClient) but as far as I can tell, the OAuth doesn't support this pattern yet, which means I still have to do this to get a token:
Will this be updated to work with the StripeClient?
The text was updated successfully, but these errors were encountered: