Hi Frame.io Dev Team,
We are setting up an automated integration to upload files from Dropbox to Frame.io V4 for our studio account. Since legacy developer tokens are disabled for our account (“This account does not allow legacy developer tokens”), we followed the recommended route:
-
Created a dedicated automation user linked to Adobe ID with access to our Frame.io workspace.
-
Created an OAuth Web App project in Adobe Developer Console with the Frame.io API added.
-
Successfully completed the OAuth authorization flow (
/ims/authorize/v2→/ims/token/v2).
The Issue:
Adobe IMS returns a valid access token (200 OK), but any request to [https://api.frame.io/v2/me](https://api.frame.io/v2/me) or /v2/projects/{project_id} using Authorization: Bearer <access_token> and x-api-key: <client_id> returns:
JSON
{
"code": 401,
"message": "Not Authorized",
"errors": [{ "code": 401, "status": 401, "title": "Not Authorized", "detail": "You are not allowed to access that resource" }]
}
Could you please check if an API entitlement / feature flag needs to be enabled for our Account ID or Client ID to allow Adobe IMS OAuth access to Frame.io V4 resources?
Thank you!