We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to get a list of direct messages?
I tried this for example:
T.post('direct_messages/list', function (err, data, response) { console.log(data) })
The text was updated successfully, but these errors were encountered:
Can you try :"T.get('direct_messages/events/list', function (err, data, response) { console.log(data) })"
Sorry, something went wrong.
OP, you are trying to POST instead of GET. If you are looking to get recent Direct messages Try T.get('direct_messages/events/list, callback func)
POST
GET
T.get('direct_messages/events/list
If you want to send POST to direct_messages/events/new
direct_messages/events/new
No branches or pull requests
Is it possible to get a list of direct messages?
I tried this for example:
T.post('direct_messages/list', function (err, data, response) { console.log(data) })
The text was updated successfully, but these errors were encountered: