Check a meeting security token

更新时间:
复制 MD 格式

Call the JoinMeeting operation with a meeting security token to retrieve the parameters that the MeetingSDK requires to join a meeting.

Request parameters

ParameterTypeRequiredDescription
UserIdStringYesThe ID of the enterprise user. Set this parameter to -1 to specify an external user. An internal member must be present in the meeting before an external user can join.
MeetingCodeStringYesThe meeting security token.
PasswordStringNoThe meeting password.

Response parameters

ParameterTypeDescription
ErrorCodeintThe error code.
MessageStringThe error message.
SuccessbooleanThe request status.
RequestIdStringThe request ID.
MeetingInfoStructThe meeting details. For more information, see the MeetingInfo structure.

MeetingInfo structure

ParameterTypeDescription
MeetingDomainStringThe domain name for access.
MeetingTokenStringThe token used by the SDK to join the meeting.
MeetingCodeStringThe meeting security token. Used to join the meeting.
MemberUUIDStringThe ID of the member who joins the meeting.
ClientAppIdStringThe ISV identity. Used for SLS logs.
MeetingUUIDStringThe unique identifier (UUID) of the meeting.
MeetingAppIdStringThe meeting App ID.

Request example

https://[Endpoint]/?Action=JoinMeeting
&UserId=234
&MeetingCode=123
&<Common request parameters>

Response example

{
  "RequestId": "123",
  "Message": "successful!",
  "Success": true,
  "ErrorCode": 0,
  "MeetingInfo":{
      "MeetingDomain": "6c1f361",
      "MeetingToken": "12345678",
      "MeetingCode": "123",
      "MemberUUID": "1001",
      "ClientAppId": "123",
      "MeetingUUID": "123",
      "MeetingAppId": "12332132****"
    }
}