Felipe Tomm
Felipe Tomm
@mose , i can make. But, i think that repo are "non official" discontinued. Because of this, i need urgently apply that fix in a fork of SDK and publish...
@ataraxus , our RC has updated from 3.8.0 to 3.8.1 and the problem persist.
Same problem here.. my solution is add an event on_close in asteroid.ddp. This event call main function, and then, reconnect bot. ```js export const runbot = async () => {...
@solanha1999 , you could make the upload with [api/v1/rooms.upload/:rid](https://developer.rocket.chat/api/rest-api/endpoints/rooms/upload). In the same request, you can send an message, or, after this, you have the path of file hosted on server,...
@solanha1999, the code converter result that's incomplete, in node you need to use something like a form-data. Can you see more [here](https://stackoverflow.com/questions/40131060/node-js-multipart-form-data-local-file-upload-to-api), has an example of upload local file to...
In my case i use axios to make a post. I think that you need to specify form-data in headers, something like this: ```js const FormData = require('form-data'); let form...
if return a **[object Promise]**, use **await** before call method: ```js // you have driver.getDirectMessageRoomId('something_here') // you need await driver.getDirectMessageRoomId('something_here') // or then driver.getDirectMessageRoomId('something_here') .then((result) => { // do something...
Hi @engahmed1190 ! I think this is just implemented. For example in official WhatsApp App you make all integration by UI. Can you confirm this?