Setup
I have an OAuth integration built on the Adobe Developer Console using a User Authentication (Web App) credential. The token flow works end to end: the refresh-token grant against Adobe IMS returns 200, and the resulting access token is accepted by Adobe’s own identity endpoint (/ims/userinfo/v2 returns 200 and correctly identifies my user). So the credential is live and the identity is valid on Adobe’s side.
The core symptom: a valid Adobe token that V4 rejects
Despite that valid token, every Frame.io V4 REST endpoint returns 401 “Invalid or missing authorization token.” This includes the bare /v4/accounts call, which takes no account id, so it is not a scoping or path problem. The rejection happens at the authentication layer, before any account or resource is resolved. This started on the same day across all endpoints; the integration was returning data the day before with no config changes on my end.
I have already completed every item on the standard troubleshooting checklist
To save us a round trip, here is the standard checklist (as seen in the related thread on this forum about an Adobe IMS token that works but is not authorized for the Frame.io API) already confirmed done on my account:
-
My Frame.io account is connected to an Adobe ID. Under Settings then Authentication it shows “Manage on Adobe,” confirming the account-linking step.
-
The Frame.io V4 API product is added to my Adobe Developer Console project and appears under Connected products and services.
-
The credential is a User Authentication (Web App) OAuth credential, not a server-to-server credential.
-
The redirect URI is configured and the consent flow completes successfully (the user clicks Allow and a token is issued).
-
I am requesting the scopes the project provides, with no modifications.
With all of the above in place, /v4/accounts still returns 401. This matches the comment in that thread that a 401 here means there is “no route to Frame.io from the Dev Console for that user,” which points at a provisioning or entitlement gap on the Frame.io side rather than anything configurable in the Developer Console.
Diagnostics already done
-
Confirmed the token is a valid Adobe identity (
/ims/userinfo/v2returns 200). -
Confirmed the failure is not version-header related. The only
api-versionvalue the API recognizes isexperimental; other values return 422 “Invalid api version.” The bare/v4/accountscall returns 401 both with and without the header, so the rejection is upstream of version routing. -
Re-ran the consent flow several times and minted fresh tokens, with no change.
-
Confirmed the same token authenticates fine to Adobe but is rejected only by
api.frame.io.
Question
Given that the Adobe-side configuration is complete and the issued token is a valid Adobe identity, what provisioning step links my Developer Console app and user to V4 API access on my Frame.io account? Is there a known migration or change that would have revoked existing app grants and require re-provisioning on the Frame.io side?