You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
as I'm currently in the process of upgrading my modules from 0.7.5 to latest 4.15.0, I discovered some issues.
I was utilizing the Webex API client included with Botkit on several occasions.
One was to get a list of all the rooms the bot was a member of.
So for a simple start I tried this:
let rooms = await bot.api.rooms.list();
console.log(rooms);
Which I hoped would work the same way as in 0.7.5 with the bot.botkit.api.rooms.list
But this one is showing me an empty array.
Doing the same API endpoint on the Developers Website with the Bot token is working fine though.
And I'm also able to get details of rooms I know the ID of using bot.api.rooms.get
Botkit version: 4.15.0
Messaging Platform: Webex
Node version: 18.0.0
Os: Debian
The text was updated successfully, but these errors were encountered:
Hi,
as I'm currently in the process of upgrading my modules from 0.7.5 to latest 4.15.0, I discovered some issues.
I was utilizing the Webex API client included with Botkit on several occasions.
One was to get a list of all the rooms the bot was a member of.
So for a simple start I tried this:
Which I hoped would work the same way as in 0.7.5 with the
bot.botkit.api.rooms.list
But this one is showing me an empty array.
Doing the same API endpoint on the Developers Website with the Bot token is working fine though.
And I'm also able to get details of rooms I know the ID of using
bot.api.rooms.get
The text was updated successfully, but these errors were encountered: