TIMMsgGetMessageExtensions

Introduction

Get message extension

This method only works with Ultimate Edition

Parameter details

Parameter name Parameter type Required Description
msgGetMessageExtensions TIMMsgGetMessageExtensionsParam yes Param of getting message extension

Returned template

Promise<commonResult<string>>

{
    code: TIMResult | TIMErrCode;
    desc?: string | undefined;
    json_param?: string | undefined;
    json_params?: string | undefined;
    user_data?: string | undefined;
}

Return value details

name type description
code TIMResultTIMErrCode Request result: Error codes. 0 means success.
desc string | undefined The description of the error. It will be empty if success.
json_param string | undefined Return value of calling API
json_params string | undefined Return value of calling API. Compatible field, which is returned in some cases.
user_data string | undefined ImSDK is responsible for transporting user-defined data without any processing

Code example

TIMMsgGetMessageExtensions: async () => {
    var message = await advanceMessageManager.TIMMsgGetMsgList(null);
    let m = message.json_params[0];
    let param: TIMMsgGetMessageExtensionsParam = {
        json_msg: m,
        user_data: ""
    }
    return timRenderInstance.TIMMsgGetMessageExtensions(param);
}

results matching ""

    No results matching ""