node-twitter
node-twitter copied to clipboard
Client library for the Twitter REST and Streaming API's.
If I take a working call / use of the API and wrap it in an async function and call the function with await, then the API call won't do...
`{ Error: read ECONNRESET at exports._errnoException (util.js:1020:11) at TLSWrap.onread (net.js:568:26) code: 'ECONNRESET', errno: 'ECONNRESET', syscall: 'read' }` Receiving the above error when trying to connect to Twitter REST API using...
I am trying to use **collections/entries/curate** endpoint to add new tweet to the collection. I tried `const params = {id: 'custom-978631851660234753', changes: [{op: 'add', tweet_id: '978624007787311105'}]}; router.post('/', (req, res) =>...
Is this package still maintained?
Apologies if I'm reaching here, but I have notice there hasn't been a lot of activity lately and was hoping to point visitors of this repo to a great alternative...
https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/new-event > Requires a JSON POST body and Content-Type header to be set to application/json. Setting Content-Length may also be required if it is not automatically.
With callback-style requests, the `params` argument is always present whether it's actually a params object or a function. But with promise-style requests, it's possible to make a call without the...
If this module is still maintained (#279), any plans to ditch `request` in favor of something lighter and ideally that works in the browser as well, like [cross-fetch](https://www.npmjs.com/package/cross-fetch)? That would...