I’m working through the ShotGrid REST API v1 docs. and trying to authenticate using OAuth 2.0 Password Credentials. In Postman, in both the Collection Authorization tab and the Get Access Token > Request access token tool, as well as in my app, I’m only getting back 404, Not Found. Pretty sure my host/username/password is all fine.
Am I missing something?
EDIT: When I make GET calls that do not require authentication (e.g. Get Open API Spec) they return fine, which is why I believe the host is correct.
In case anyone else encounters this problem, I was never able to get username/password auth working, and ended up going with “client_credentials” grant type that uses a client id and secret key. This method isn’t well documented in the general REST API docs, but is detailed in the Python API docs as “Script-based Authentication” here: Authentication — python-api master documentation.