Hi,
I'm using the client API for PHP suggested at https://docs.espocrm.com/development/api-client-php/
I'm already using basic authentication (username and password), and I'm able to validate data and I can see the authentication token as a cookie.
Now my question is: Is this autentication token that I need to use with the authentication method described into the documentation?
Thanks
I'm using the client API for PHP suggested at https://docs.espocrm.com/development/api-client-php/
I'm already using basic authentication (username and password), and I'm able to validate data and I can see the authentication token as a cookie.
Now my question is: Is this autentication token that I need to use with the authentication method described into the documentation?
"Espo-Authorization: " + base64Encode(username + ':' + passwordOrToken)
Comment