joinChannel with Info
See original GitHub issueI wanna join channel with info.
I got error in iOS
Exception '-[__NSDictionaryM length]: unrecognized selector sent to instance 0x280d66840' was thrown while invoking joinChannel on target Agora with params
my code
await RtcEngine.joinChannel(channel, undefined, undefined, {
userName: 'testUser1',
})
Issue Analytics
- State:
- Created 3 years ago
- Comments:56
Top Results From Across the Web
how to pass extra information while join channel #92
i used joinChannel function and pass a String in optionalInfo but other users can't get that String while joining. i used ...
Read more >joinChannel method : uid assignment - agora.io
The Agora.io doc is specifing for the joinChannel method : The user ID. A 32-bit unsigned integer with a value ranging from 1...
Read more >Method: channels.joinChannel - MadelineProto
Method: channels.joinChannel. Back to methods index. Join a channel/supergroup. Parameters: Name, Type, Description, Required. channel, Username, chat ID, ...
Read more >How can I use string user names? - Agora Documentation
// Joins the channel with the registered user account. 7. agoraKit.joinChannel(byUserAccount: myStringId, ...
Read more >com.ircclouds.irc.api.IRCApi.joinChannel java code examples
log.info("Joining channel %s", chan); irc.joinChannel(chan);
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
Try this guide https://docs.agora.io/en/faq/string you apparently need to call
registerLocalUserAccount
firstthe
optionalInfo
param ofjoinChannel
is not the userInfo. you can get more info from the comment aboutjoinChannel
method.getUserInfoByUid
should be called afterjoinChannelWithUserAccount