最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Twitter API v2 OAuth 2.0 returns 403 Forbidden for POST tweets despite successful authorization - Stack Overflow

programmeradmin2浏览0评论

I've set up Twitter OAuth 2.0 authentication with read and write permissions, but I'm receiving 403 Forbidden errors when trying to create tweets or access user information. What works:

Successfully redirecting users to Receiving authorization code after user grants permission Successfully exchanging code for access token via Receiving token response with correct scopes:

json: { "token_type": "bearer", "expires_in": 7200, "access_token": "[REDACTED]", "scope": "tweet.write tweet.read" } What fails:

Creating tweets with returns:

json: { "title": "Forbidden", "type": "about:blank", "status": 403, "detail": "Forbidden" }

Getting user info with returns the same 403 error

Implementation details:

Using React.js for frontend Twitter Developer Account has read and write permissions enabled Using OAuth 2.0 authorization code flow Including appropriate headers:

Authorization: Bearer [access_token] Content-Type: application/json

Request body for tweet creation:

jsonCopy{ "text": "Test tweet" } What I've tried:

Verifying app permissions in Twitter Developer Portal Confirming the OAuth scopes include tweet.read and tweet.write Testing with Postman using the same access token Checking Twitter API documentation for required permissions

Questions:

Why am I getting 403 Forbidden errors despite having a valid access token with appropriate scopes? Are there additional permissions or settings required for these endpoints? Could this be related to my Twitter Developer Account access level (Essential vs Elevated)? Are there any common gotchas with the Twitter API v2 that I might be missing?

Any help would be greatly appreciated

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论