I have integrated Agora video calling libs in the android project. When I use temp token then video calling working perfectly but if I create a dynamic token then I get the error code 101. I have created a dynamic token in RtcTokenBuilder Method.
implementation 'io.agora.rtc:full-sdk:3.0.0'
RtcTokenBuilder Class Link : https://github.com/AgoraIO/Tools/blob/master/DynamicKey/AgoraDynamicKey/java/src/main/java/io/agora/media/RtcTokenBuilder.java
RtcTokenBuilderSample Link : https://github.com/AgoraIO/Tools/blob/master/DynamicKey/AgoraDynamicKey/java/src/main/java/io/agora/sample/RtcTokenBuilderSample.java
RtcTokenBuilder token = new RtcTokenBuilder();
int timestamp = (int) (System.currentTimeMillis() / 1000 + expirationTimeInSeconds);
String result = token.buildTokenWithUserAccount(appId, appCertificate, chenal, "0", RtcTokenBuilder.Role.Role_Publisher, timestamp);
Log.e("live Token", "***************Token: tkn == " + result);