twitter-lite
twitter-lite copied to clipboard
A tiny, full-featured, flexible client / server library for the Twitter API
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...
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
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! ```...
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...
The media upload endpoint should use the https://upload.twitter.com/1.1 resource url
```` 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.'...
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...
```js const stream = client.stream('statuses/filter', query) stream.destroy() // crash ``` `destroy` function is added asynchronously and is therefore not always available.