There is already developed SOAP API's and now 3rd party has changed auth mechanism to OAuth.
So how to call Rest API in Web Service to get bearer token and then pass that bearer token to existing SOAP API's.
There is already developed SOAP API's and now 3rd party has changed auth mechanism to OAuth.
So how to call Rest API in Web Service to get bearer token and then pass that bearer token to existing SOAP API's.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Aman GuptaPosted Sep 11, 2024, 7:17 AM
Hi Priya,
Since you already have your SOAP APIs developed and to obtain the bearer token, you can achive it in the following way.
2. Use the Bearer Token to Access SOAP APIs: Now you can include the Bearer Token in SOAP Requests. Modify your SOAP API requests to include the bearer token in the Authorization header.'
After getting the bearer token, you can now use it in your existing application.