Hello @lindapri123 ,Your developer can use the any library which can be
used to get and post response over HTTP. I would recommend using the
GuzzleHTTP library for this purpose.You can use this library to post
data in rest/soap format to first get the access token from Adobe
I/O.The code will look like this.$client = new
\GuzzleHttp\Client();$response = $client->request('POST',
'https://ims-na1.adobelogin.com/ims/exchange/jwt', ['form_params' =>
['client_id' => 'YOUR_CLIENT_ID','client_secret' =...