Steve Kamerman

Results 68 comments of Steve Kamerman

Hi @RoNoLo, sorry about the slow delay! You can set `'verify' => false` on the Guzzle client itself so all requests are unverified: ```php // Authorization client - this is...

Hmm, good question @simensen, and that's a good point. We would indeed need the refresh token to retry getting an access token. In this scenario, you would normally get a...

Hi @bogdanghervan, thanks for the question and context. Your assessment seems correct to me on all fronts, and I agree that there's probably a better way (particularly because your implementation...

Hi Alex, I have not followed this change, so I do not have a migration strategy yet. Do you have some idea of how to approach this? I'm happy to...

Ok, thanks, I'll look into it and see what I am using `getConfig()` for.

Hi @pbowyer, thanks for the suggestion, I think it's a great idea. Are you able to add the field name mapping support and send a PR?

@pbowyer what do you think about trying to guess the field name, so `access_token` and `accessToken` are both matched? This could be done, for example, by removing all characters except...

Hi @pbowyer, it occurred to me that you can also do what you want by creating a different `RawTokenFactory` like this: ```php class MyTokenFactory extends \kamermans\OAuth2\Token\RawTokenFactory { public function __invoke(array...

I'll take a look at it right now, but as far as I can tell, Guzzle 8 is not on the horizon.

@genesiscz, can you try my PR to see if it works in your environment? (all the tests pass) ``` composer require "kamermans/guzzle-oauth2-subscriber":"get-config-deprecation" ``` It seems I didn't even need `getConfig()`...