JSON:
{"code":0}` to the response.Field | Value |
Content-Type | application/json |
Sign | The signature value. |
SdkAppId | The SDK application ID. |
Field | Type | Description |
EventGroupId | Number | |
EventType | Number | |
CallbackTs | Number | The Unix timestamp (ms) of callback sending. |
EventInfo | JSON Object |
Field | Value | Description |
EVENT_GROUP_ROOM | 1 | Room event group |
EVENT_GROUP_MEDIA | 2 | Media event group |
Field | Value | Description |
EVENT_TYPE_CREATE_ROOM | 101 | Creating room |
EVENT_TYPE_DISMISS_ROOM | 102 | Closing room |
EVENT_TYPE_ENTER_ROOM | 103 | Entering room |
EVENT_TYPE_EXIT_ROOM | 104 | Leaving room |
EVENT_TYPE_CHANGE_ROLE | 105 | Switching roles |
EVENT_TYPE_START_VIDEO | 201 | Starting pushing video data |
EVENT_TYPE_STOP_VIDEO | 202 | Stopping pushing video data |
EVENT_TYPE_START_AUDIO | 203 | Starting pushing audio data |
EVENT_TYPE_STOP_AUDIO | 204 | Stopping pushing audio data |
EVENT_TYPE_START_ASSIT | 205 | Starting pushing substream data |
EVENT_TYPE_STOP_ASSIT | 206 | Stopping pushing substream data |
104
callback and not the 202
or 204
callback. 202
and 204
are triggered only if a user manually turns their video and audio off.{ "EventGroupId": 1,"EventType": 101,"CallbackTs": 1687770730166,"EventInfo": {"RoomId": 12345,"EventTs": 1687770730,"EventMsTs": 1687770730160,"UserId": "test"}}
{"EventGroupId": 1,"EventType": 102,"CallbackTs": 1687771618531,"EventInfo": {"RoomId": "12345","EventTs": 1687771618,"EventMsTs": 1687771618457}}
{"EventGroupId": 1,"EventType": 103,"CallbackTs": 1687770731932,"EventInfo": {"RoomId": 12345,"EventTs": 1687770731,"EventMsTs": 1687770731831,"UserId": "test","Role": 21,"TerminalType": 2,"UserType": 3,"Reason": 1}}
{"EventGroupId": 1,"EventType": 104,"CallbackTs": 1687770731922,"EventInfo": {"RoomId": 12345,"EventTs": 1687770731,"EventMsTs": 1687770731898,"UserId": "test","Role": 20,"Reason": 1}}
{"EventGroupId": 1,"EventType": 105,"CallbackTs": 1687772245596,"EventInfo": {"RoomId": 12345,"EventTs": 1687772245,"EventMsTs": 1687772245537,"UserId": "test","Role": 21}}
{"EventGroupId": 2,"EventType": 201,"CallbackTs": 1687771803198,"EventInfo": {"RoomId": 12345,"EventTs": 1687771803,"EventMsTs": 1687771803192,"UserId": "test"}}
{"EventGroupId": 2,"EventType": 202,"CallbackTs": 1687771919458,"EventInfo": {"RoomId": 12345,"EventTs": 1687771919,"EventMsTs": 1687771919447,"UserId": "test","Reason": 0}}
{"EventGroupId": 2,"EventType": 203,"CallbackTs": 1687771869377,"EventInfo": {"RoomId": 12345,"EventTs": 1687771869,"EventMsTs": 1687771869365,"UserId": "test"}}
{"EventGroupId": 2,"EventType": 204,"CallbackTs": 1687770732498,"EventInfo": {"RoomId": 12345,"EventTs": 1687770732,"EventMsTs": 1687770732383,"UserId": "test","Reason": 0}}
{"EventGroupId": 2,"EventType": 205,"CallbackTs": 1687772013823,"EventInfo": {"RoomId": 12345,"EventTs": 1687772013,"EventMsTs": 1687772013753,"UserId": "test"}}
{"EventGroupId": 2,"EventType": 206,"CallbackTs": 1687772015054,"EventInfo": {"RoomId": 12345,"EventTs": 1687772015,"EventMsTs": 1687772015032,"UserId": "test","Reason": 0}}
Field | Type | Description |
RoomId | String/Number | The room ID, which is of the same type as the room ID on the client. |
EventTs | Number | The Unix timestamp (seconds) of event occurrence. This field is reserved for compatibility purposes. |
EventMsTs | Number | The Unix timestamp (ms) of event occurrence. |
UserId | String | User ID |
UniqueId | Number | The unique identifier of an event (optional), which is valid for the room event group. When a user experiences unusual events such as network change or abnormal exit and reentry, your server may receive multiple callbacks for the entry and exit of the same user. A unique identifier helps identify a room entry or exit. |
Role | Number | |
TerminalType | Number | |
UserType | Number | |
Reason | Number |
Field | Value | Description |
MEMBER_TRTC_ANCHOR | 20 | Anchor |
MEMBER_TRTC_VIEWER | 21 | Audience |
Field | Value | Description |
TERMINAL_TYPE_WINDOWS | 1 | Windows |
TERMINAL_TYPE_ANDROID | 2 | Android |
TERMINAL_TYPE_IOS | 3 | iOS |
TERMINAL_TYPE_LINUX | 4 | Linux |
TERMINAL_TYPE_OTHER | 100 | Other |
Field | Value | Description |
USER_TYPE_WEBRTC | 1 | WebRTC |
USER_TYPE_APPLET | 2 | Mini Program |
USER_TYPE_NATIVE_SDK | 3 | Native SDK |
Field | Description |
Room entry | 1: Voluntary entry 2: Network change 3: Timeout and retry 4: Cross-room communication |
Room exit | 1: Voluntary exit 2: Timeout 3: Removed from the room 4: Cross-room communication was canceled 5: The process was force-closed Note: TRTC cannot capture a force-close event on Android and will send a callback only after timeout ( reason = 2 ). |
// In the formula below, `key` is the key used to calculate a signature.Sign = base64(hmacsha256(key, body))
body
is the original packet body of the callback request you receive. Do not make any modifications. Below is an example.body="{\\n\\t\\"EventGroupId\\":\\t1,\\n\\t\\"EventType\\":\\t103,\\n\\t\\"CallbackTs\\":\\t1615554923704,\\n\\t\\"EventInfo\\":\\t{\\n\\t\\t\\"RoomId\\":\\t12345,\\n\\t\\t\\"EventTs\\":\\t1608441737,\\n\\t\\t\\"UserId\\":\\t\\"test\\",\\n\\t\\t\\"UniqueId\\":\\t1615554922656,\\n\\t\\t\\"Role\\":\\t20,\\n\\t\\t\\"Reason\\":\\t1\\n\\t}\\n}"
import javax.crypto.Mac;import javax.crypto.spec.SecretKeySpec;import java.util.Base64;//# Function: Third-party callback sign verification//# Parameters://# key: The key configured in the console//# body: The body returned by the Tencent Cloud callback//# sign: The sign value returned by the Tencent Cloud callback//# Return Value://# Status: OK indicates that the verification has passed, FAIL indicates that the verification has failed, and the specific reason can be found in the Info//# Info: Success/Failure informationpublic class checkSign {public static String getResultSign(String key, String body) throws Exception {Mac hmacSha256 = Mac.getInstance("HmacSHA256");SecretKeySpec secret_key = new SecretKeySpec(key.getBytes(), "HmacSHA256");hmacSha256.init(secret_key);return Base64.getEncoder().encodeToString(hmacSha256.doFinal(body.getBytes()));}public static void main(String[] args) throws Exception {String key = "123654";String body = "{\\n" + "\\t\\"EventGroupId\\":\\t2,\\n" + "\\t\\"EventType\\":\\t204,\\n" + "\\t\\"CallbackTs\\":\\t1664209748188,\\n" + "\\t\\"EventInfo\\":\\t{\\n" + "\\t\\t\\"RoomId\\":\\t8489,\\n" + "\\t\\t\\"EventTs\\":\\t1664209748,\\n" + "\\t\\t\\"EventMsTs\\":\\t1664209748180,\\n" + "\\t\\t\\"UserId\\":\\t\\"user_85034614\\",\\n" + "\\t\\t\\"Reason\\":\\t0\\n" + "\\t}\\n" + "}";String Sign = "kkoFeO3Oh2ZHnjtg8tEAQhtXK16/KI05W3BQff8IvGA=";String resultSign = getResultSign(key, body);if (resultSign.equals(Sign)) {System.out.println("{'Status': 'OK', 'Info': 'validation passed'}");} else {System.out.println("{'Status': 'FAIL', 'Info': 'validation failed'}");}}}
# -*- coding: utf8 -*-import hmacimport base64from hashlib import sha256# Function: Third-party callback sign verification# Parameters:# key: The key configured in the console# body: The body returned by the Tencent Cloud callback# sign: The sign value returned by the Tencent Cloud callback# Return Value:# Status: OK indicates that the verification has passed, FAIL indicates that the verification has failed, and the specific reason can be found in the Info# Info: Success/Failure informationdef checkSign(key, body, sign):temp_dict = {}computSign = base64.b64encode(hmac.new(key.encode('utf-8'), body.encode('utf-8'), digestmod=sha256).digest()).decode('utf-8')print(computSign)if computSign == sign:temp_dict['Status'] = 'OK'temp_dict['Info'] = 'validation passed'return temp_dictelse:temp_dict['Status'] = 'FAIL'temp_dict['Info'] = 'validation failed'return temp_dictif __name__ == '__main__':key = '123654'body = "{\\n" + "\\t\\"EventGroupId\\":\\t2,\\n" + "\\t\\"EventType\\":\\t204,\\n" + "\\t\\"CallbackTs\\":\\t1664209748188,\\n" + "\\t\\"EventInfo\\":\\t{\\n" + "\\t\\t\\"RoomId\\":\\t8489,\\n" + "\\t\\t\\"EventTs\\":\\t1664209748,\\n" + "\\t\\t\\"EventMsTs\\":\\t1664209748180,\\n" + "\\t\\t\\"UserId\\":\\t\\"user_85034614\\",\\n" + "\\t\\t\\"Reason\\":\\t0\\n" + "\\t}\\n" + "}"sign = 'kkoFeO3Oh2ZHnjtg8tEAQhtXK16/KI05W3BQff8IvGA='result = checkSign(key, body, sign)print(result)
<?phpclass TlsEventSig {private $key = false;private $body = false;public function __construct( $key, $body ) {$this->key = $key;$this->body = $body;}private function __hmacsha256() {$hash = hash_hmac( 'sha256', $this->body, $this->key, true );return base64_encode( $hash);}public function genEventSig() {return $this->__hmacsha256();}}$key="789";$data="{\\n\\t\\"EventGroupId\\":\\t1,\\n\\t\\"EventType\\":\\t101,\\n\\t\\"CallbackTs\\":\\t1608086882372,\\n\\t\\"EventInfo\\":\\t{\\n\\t\\t\\"RoomId\\":\\t20222,\\n\\t\\t\\"EventTs\\":\\t1608086882,\\n\\t\\t\\"UserId\\":\\t\\"222222_phone\\"\\n\\t}\\n}";$api = new TlsEventSig($key, $data);echo $api->genEventSig();
package mainimport "fmt"import ("crypto/hmac""crypto/sha256""encoding/base64")func main () {var data = "{\\n\\t\\"EventGroupId\\":\\t1,\\n\\t\\"EventType\\":\\t101,\\n\\t\\"CallbackTs\\":\\t1608086882372,\\n\\t\\"EventInfo\\":\\t{\\n\\t\\t\\"RoomId\\":\\t20222,\\n\\t\\t\\"EventTs\\":\\t1608086882,\\n\\t\\t\\"UserId\\":\\t\\"222222_phone\\"\\n\\t}\\n}"var key = "789"//JSRUN engine 2.0, supporting up to 30 types of languages for online running, with full simulation of online interaction for input and output.fmt.Println(hmacsha256(data,key))}func hmacsha256(data string, key string) string {h := hmac.New(sha256.New, []byte(key))h.Write([]byte(data))return base64.StdEncoding.EncodeToString(h.Sum(nil))}
Was this page helpful?