twitter-lite icon indicating copy to clipboard operation
twitter-lite copied to clipboard

A tiny, full-featured, flexible client / server library for the Twitter API

Results 74 twitter-lite issues
Sort by recently updated
recently updated
newest added

Hello, I'm studying node, and I'm trying to reply a tweet that was captured by stream. But I receive the next error message: (node:18445) UnhandledPromiseRejectionWarning: # (node:18445) UnhandledPromiseRejectionWarning: Unhandled promise...

question

Do we have basic authentication support that can support GNIP api's. For example this full-search archive. curl --compressed -v -u{email}:{password} https://gnip-api.twitter.com/search/fullarchive/accounts/{usergroup}/{label}.json?query=gnip&maxResults=10

question

Hey, sorry just got this and wondered if anyone knows what it means, is it saying that the account doesn't have a `screen_name`? I thought that would be impossible! ```...

question

I have successfully done application-auth and user-auth with callback-url's. But can we do user-auth without callback-urls? From https://developer.twitter.com/en/docs/basics/authentication/api-reference/authorize: > Allows a Consumer application to use an OAuth Request Token to...

question

The media upload endpoint should use the https://upload.twitter.com/1.1 resource url

enhancement

Is there a way to set timeouts on API calls?

enhancement

```` const result = await this.client.post("media/upload", { 'command': 'STATUS', 'media_id': `....` }) ```` this code gives me an error ```` errors: [ { code: 38, message: 'media parameter is missing.'...

question

The authentication works perfectly with twit, but with twitter-lite all the request I tried were denied. I used the [basic example](https://github.com/draftbit/twitter-lite#verifying-credentials-example-user-auth). If I do the user authentication as following: `client...

question

```js const stream = client.stream('statuses/filter', query) stream.destroy() // crash ``` `destroy` function is added asynchronously and is therefore not always available.

bug