Skip to content
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

Closed
andrews05 opened this issue Jun 25, 2020 · 5 comments · Fixed by #964
Closed

OAuth with client/services pattern #958

andrews05 opened this issue Jun 25, 2020 · 5 comments · Fixed by #964
Assignees
Labels

Comments

@andrews05
Copy link

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:

Stripe::setApiKey($apiKey);
$response = OAuth::token([
    'grant_type' => 'authorization_code',
    'code' => $_REQUEST['code']
]);

Will this be updated to work with the StripeClient?

@remi-stripe
Copy link
Contributor

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.

@andrews05
Copy link
Author

Sure, thank you :)

@maxleroy
Copy link

Thank you guys it's a real pleasure to see this new implementation coming to life.
I'd need the OAuth feature to be implemented ASAP as well.
Do you have any idea when we can expect it ?
Again thank you so much 🙏

@remi-stripe
Copy link
Contributor

@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?

@richardm-stripe
Copy link
Contributor

Released in v7.40.0 e.g.

$stripe->oauth->token([
    'grant_type' => 'authorization_code',
    'code' => $_REQUEST['code']
]);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants