This commit is contained in:
wangchuxiao
2022-03-16 14:59:15 +08:00
parent fb815c0be0
commit fa21ae6161
3 changed files with 187 additions and 296 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
syntax = "proto3";
import "Open_IM/pkg/proto/sdk_ws/ws.proto";
option go_package = "./rtc;rtc";
package rtc;
@@ -12,7 +13,8 @@ message GetJoinTokenReq{
string apiSecret = 2;
string room = 3;
string identity = 4;
string operationID = 5;
server_api_params.ParticipantMetaData metaData = 5;
string operationID = 6;
}
message GetJoinTokenResp{
@@ -23,4 +25,3 @@ message GetJoinTokenResp{
service RtcService {
rpc GetJoinToken(GetJoinTokenReq) returns(GetJoinTokenResp);
}