I am trying to login to Maximo using the REST API; however, it just displays the login html content.
As per the IBM documentation:
POST /oslc/login
Authorization: BASIC <base64 encoded user:pass>
<no body required>
I tried this both on curl and via Postman. The results on both just display the Maximo login html content and does not login.
curl --location --request POST 'https://domain/maximo/oslc/login' --header 'Authorization: Basic c5hhcmKJMTJ6aW4uaPJtLm89uEp91p13aXK900UgHjE8ODQ='
The username and password I encoded are valid.
I’m not sure why this fails to login: Any input would be greatly appreciated.