-
Running the code below where
Raising the issue because I was not experiencing the problem about ~2 months ago & wondering if recent changes to API have affected some tweepy functionality. Any thoughts? Thanks-- `
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
By default, You need to pass For code block usage, see https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks. |
Beta Was this translation helpful? Give feedback.
By default,
Client.get_users_tweets
does not use OAuth 1.0a User Context to authenticate, so if you're passing an app-only bearer token, it's attempting to use that.You need to pass
False
foruser_auth
or use an OAuth 2.0 Authorization Code Flow with PKCE access token.For code block usage, see https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks.