node-twitter-api-v2 icon indicating copy to clipboard operation
node-twitter-api-v2 copied to clipboard

Strongly typed, full-featured, light, versatile yet powerful Twitter API v1.1 and v2 client for Node.js.

Results 74 node-twitter-api-v2 issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Getting Error while OAuth Followed the documentation and getting this in the response. It worked for the first time and getting this for the rest of the...

Here's my code snippet to do the user following fetching ``` public async checkUserFollows( currentUser: CurrentUserDto, { code, codeVerifier }: TwitterCodeBodyDto ) { const { accessToken } = await this.twitterAuthClient.loginWithOAuth2({...

**Describe the bug** i am getting below error when creating tweet using v2 api . data: { title: 'Unsupported Authentication', detail: 'Authenticating with OAuth 2.0 Application-Only is forbidden for this...

Hello, I am studying this library and have a question, can I use this api to subscribe to a user from my account?

The referred method is this linked: [**single-user-by-username**](https://github.com/PLhery/node-twitter-api-v2/blob/master/doc/v2.md#single-user-by-username) I want to get back also optional user fields with this method, using this: const user = await readOnlyClient.v2.userByUsername(userName, **{ 'user.fields': [ 'username',...

*Note: For questions about how to use an endpoint, or problems related to Twitter API than the lib itself, please use the GitHub Discussions instead of opening a new issue*....

**Describe the bug** After making enough requests, I get: ``` (node:31573) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [TLSSocket]. Use emitter.setMaxListeners() to increase limit ``` **To...

**Describe the bug** We've been posting threads and every once in a while we'll get back a 503, service unavailable error ```javascript ApiResponseError: Request failed with code 503 at RequestHandlerHelper.createResponseError...

I'm encountering an issue with the client.v2.tweet function from the Twitter API library within supabase cloud functions. The problem is that when I use this function to post a tweet,...

While fetching all the direct message events using `listDmEvents` call, we need to mandatorily pass `pagination_token` in the request. However, for initial request, we don't have to pass any token...