Hai,
I have created an api which returns me Token from openvidu. I am using node client for generating token. When i call getToken() function in android Token Successfully generated. But when joinRoom function is called i got error like this.
{
“id”: 0,
“error”: {
“code”: 202,
“message”: “Unable to join session. Session sessionA cannot be found. Code: 202”
},
“jsonrpc”: “2.0”
}
this is my joinRoom input JSON;
{
“jsonrpc”:“2.0”,
“method”:“joinRoom”,“id”:“1”,
“params”:{“metadata”:"{“clientData”:
“Participant60”}",
“session”:“sessionA”,
“secret”:"",“platform”:“Android 28”,
“token”:“wss://xxxxxxxx.xxxxxxx.xxx?
sessionId=ses_Zhk3nBVg3Y&token=tok_KgMd9uOO5ZV0y59P&role=PUBLISHER&version=2.14.0&coturnIp=3.231.17.44&turnUsername=FZL3NF&turnCredential=uhzfqo&webrtcStatsInterval=30”}}
What is the problem please help me.