Wanted to get an idea of what rest services you will be using so I can test authentications.
Thanks,
Thomas
Thanks,
Thomas
Mainly get and post but some times patch as well.
Morning,
So my obvious question would be is the setup you have in place now, even though not easy, is still doable, yes..but is more involved?
I mean.. the actions, snippets, that you have in place in GENERAL will still work with most sites? If they follow API standards?
If the answer is yes then i think we will be happy to go with as-it-is.
For the ones like 'paypal' then could a script be created that would work to get around that (I'm going on your "do it slightly different" implying the word slightly as it's still doable, right?).
I guess that's my only concern.
Parameter | Required/Optional | Description |
response_type | Required | Defines the type of response (e.g., code). |
client_id | Required | Application identifier. |
redirect_uri | Required | Where the user is redirected post-authentication. |
scope | Required | Permissions requested (e.g., read write). |
state | Optional | CSRF protection and state management. |
code_challenge | Optional | PKCE: Challenge derived from a code verifier. |
code_challenge_method | Optional | PKCE method (plain or S256). |
client_secret | Required (varies) | Secret key to authenticate your app (not for PKCE). |
grant_type | Required | Type of grant (authorization_code, refresh_token). |
refresh_token | Optional | Used for refreshing tokens. |
Hi Thomas,
I am wondering if you don't need one of the parameters above as required, can you still have it in the form but don't use it if the server doesn't need it. Otherwise, you have to have various forms for various usage which is not ideal.
To make the matter difficult, some websites uses a token refresh so we need to figure out how to get the refresh token automatically
The call to website authentication is a browse pop-up window to be able to login to that website for authentication purpose only and ESB can call web browse to accomplish that task I believe.
That is awesome!Already got that working. They send you the expire time and I save it. Then I check the time to see if I need to refresh it.
Thomas
Isn't that browser takes you to the their website to authenticate you with your login name and password?Yeah, I'm already popping up a browser for that.
Won't help if they ask for a redirect url for authentication.
Thomas
Isn't that browser takes you to the their website to authenticate you with your login name and password?