Hello
I am new to Docebo Platfrom and I am trying to Integration with custom application.
Here are the details I have been provided with.
client_id,client_secret,username,password
I am trying to perfom authentication via Using the Resource Owner Password Credentials grant type.
curl -X POST https://<yoursubdomain.docebosaas.com>/oauth2/token \ -F client_id=<your_client_id> \ -F client_secret=<your_client_secret> \ -F grant_type=password \ -F scope=api \ -F username=<your_username> \ -F password=<your_password>
https://help.docebo.com/hc/en-us/articles/360020082060-APIs-authentication
Example:
Error: The grant type was not specified in the request
Appreciate, if someone could please provide inputs here.
Am I missing something ?