Open panand363 opened 6 years ago
Make sure you're calling the authenticate()
method first before calling queueReport. The authenticate()
method initializes the client with your credentials. For example:
$username = 'JaredsTestUser:JaredsTestCompany';
$secret = 'keepthisasecretthisisnotreal';
$adm = new AdobeMarketingCloud\Client();
$adm->authenticate($username, $secret);
$reportApi = $adm->getReportApi();
...
Using the above code, I was able to queue a report without any trouble after replacing the $username/$secret values with my credentials.
Hello, I am following the example in the readme file and getting the following error
I can see the endpoint is different and following the example i have set it accordingly. Can someone please help.
Regards
Puneet