Getting metadata from a connected room
See original GitHub issueHi,
I was wondering if its possible to access the metadata of a connected room.
the metadata is available using the client.getAvailableRooms() method
client.getAvailableRooms('map', (rooms, err) => {
rooms.forEach((room) => {
console.log(room.metadata) // Here it is
})
})
but once you connect to a room we loose access:
client = new Client(ENDPOINT)
room = this.client.join('map')
room.metadata // Nothing here...
I saw that RoomAvailable has the metadata attribute, but Room itself doesn’t.
Is it possible to pass this attribute to the connected Room instance?
Thanks!
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How Outlook's Room Finder Uses Metadata from the Places ...
The Outlook Places service uses metadata stored for conference rooms and room lists to help users find suitable meeting places.
Read more >Room Metadata | Dyte Docs
All metadata pertaining to a meeting is stored in meeting.meta . This includes: roomName : The name of the room the current participant...
Read more >Embedding Metadata within a Video Stream
Viewing Timed Metadata · Open the Amazon IVS console . · In the top left, choose the hamburger icon to open the navigation...
Read more >Where can I find metadata for USGS products?
Metadata for USGS data can be found in the USGS Science Data Catalog or on the repository serving the data. USGS data that...
Read more >Metadata in Data Warehouse (ETL) Explained With Examples
You will also get to know what is metadata-driven ETL and the ... #2) Front room Metadata: Directs the end-users to work with...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The immediate thing does it! Thanks again!
@gmfc Thanks! The
listen
method accepts a third argument which means “immediate” - that will trigger the changes immediately:I just noticed this hasn’t been documented 🤔