node-twitter
node-twitter copied to clipboard
Client library for the Twitter REST and Streaming API's.
Some Twitter API POST requests need a JSON POST body. (Like [the new direct_messages endpoint](https://dev.twitter.com/rest/reference/post/direct_messages/events/new)) As node-twitter constrain us to use `form` or `form-data` POST method, we aren't able to...
Using your work, is there a way to make the status update dynamic? Ideally I'd like to take a variable from a JSON feed but the contents of a static...
Whenever i tried to login, it gives internal server error occurred. Consumer key and Consumer Secret Key are static (which i generated) and getting auth token and auth access token...
@desmondmorris seem to be a part of the ad api and not supported yet
I'm making the following call: `client.get('friends/ids.json?', {}, (error, idArray, response) => {})` However The Id's I get back are incorrect. making the call from Postman returns correct friend Id's. Weird...
Hi all, I am trying to use this in angular app.I have a component where i have imported using `import {twitter} from 'twitter';` on click on button i am triggering...
Can you guys add the ability to request accessToken and accessTokenSecrete as implemented in this module [Here](https://github.com/reneraab/node-twitter-api/blob/master/twitter.js) The following functions need to add to your module and it will be...
The stream API stopped working suddently throwing the following (Authorization Required) ``` [twitter] api.stream Error: Status Code: 401 at Request. (node_modules/twitter/lib/twitter.js:278:28) at emitOne (events.js:96:13) at Request.emit (events.js:188:7) at Request.onRequestResponse (node_modules/request/request.js:1068:10)...
how to get direct message I've tried it that way but not the direct message ``` `var streamDM = client.stream('user') streamDM.on('direct_message', function (directMsg) { console.log(directMsg) })` ``` please help me
When I called method `twitter.get('favorites/list')` If I did not pass the params parameter, this function will throw error `TypeError: Cannot read property 'base' of undefined`. And I find out that...