You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GET /2/tweets/:id/liking_users endpoint docs appears to indicate App Only (Bearer Token) auth level is acceptable for that endpoint, but using the app's bearer token returns the following error:
data: {
title: 'Unsupported Authentication',
detail: 'Authenticating with OAuth 2.0 Application-Only is forbidden for this endpoint. Supported authentication types are [OAuth 1.0a User Context, OAuth 2.0 User Context].',
type: 'https://api.twitter.com/2/problems/unsupported-authentication',
status: 403
}
GET /2/tweets/:id/liking_users endpoint yields a 403 error indicating the auth level is not sufficient and that this endpoint requires a User Context:
// GET /2/tweets/:id/liking_users
const response = await axios.get(`https://api.twitter.com/2/tweets/${TWEET_ID}/liking_users`,
{ headers: { "Authorization": `Bearer ${process.env.X_V2_API_BEARER_TOKEN!}` } }
).catch((e) => {
console.error(e.response.data);
throw e;
});
console.log("response", JSON.stringify(response.data, null, 2));
// error.response.data: {
title: 'Unsupported Authentication',
detail: 'Authenticating with OAuth 2.0 Application-Only is forbidden for this endpoint. Supported authentication types are [OAuth 1.0a User Context, OAuth 2.0 User Context].',
type: 'https://api.twitter.com/2/problems/unsupported-authentication',
status: 403
}
Steps to reproduce the behavior
Create Twitter V2 API developer account
Subscribe to Basic tier to access expanded suite of endpoints
Create project and app, retrieve bearer token, client id, etc.
Use app bearer token to execute code snippets above re: documentation
Observe response discrepancy
Question
Are the docs mislabeled and the disparate behavior is the correct behavior of these endpoints such that OAuth 2.0 User Context with PKCE is actually required for /liking_users?
Or is there a bug somewhere in /liking_users in that it should return a similar list to /retweeted_by when queried with the app's bearer token?
Or other?
The text was updated successfully, but these errors were encountered:
GET /2/tweets/:id/liking_users
endpoint docs appears to indicate App Only (Bearer Token) auth level is acceptable for that endpoint, but using the app's bearer token returns the following error:Expected behavior
Based on the documentation, I expect
GET /2/tweets/:id/liking_users
to function similarly to
GET /2/tweets/:id/retweeted_by
for example:
Actual behavior
GET /2/tweets/:id/liking_users
endpoint yields a403
error indicating the auth level is not sufficient and that this endpoint requires a User Context:Steps to reproduce the behavior
Question
Are the docs mislabeled and the disparate behavior is the correct behavior of these endpoints such that OAuth 2.0 User Context with PKCE is actually required for
/liking_users
?Or is there a bug somewhere in
/liking_users
in that it should return a similar list to/retweeted_by
when queried with the app's bearer token?Or other?
The text was updated successfully, but these errors were encountered: