I've used Saloon for refactor third party integration. Meanwhile I observed that some integrations doesn't follow the OAuth standards then I had to create the CustomAuthenticator. Well, I have a good...
Gurpreet Kait
Author
I've used Saloon for refactor third party integration. Meanwhile I observed that some integrations doesn't follow the OAuth standards then I had to create the CustomAuthenticator.
Well, I have a good example of Amazon. That we can take as an example here.
Create An Authenticator
We will create an Authenitcator first using command php artisan saloon:auth
This will create an authenticator only if you use the Laravel plugin (saloon docs).
Now we have two ways, Either you go with fully customized approach and you will create a custom request and every custom.
Else, you use saloon built-in method. For example, Saloon provides you traits for OAuth Authorization and ClientCredentials both. You can use them in your connector and take advantage of saloon.
Well, how you can use that I'll give you an example of that.
Let's say here we have a Connector called AmazonConnector.
This AuthorizationCodeGrant trait gives you everything you need, for example. A request to get access token and refresh token. But for that you have to define the default Configs as mentioned in the code below.