分享到 :

TencentApiReq

请求包类,用于向其他业务发送请求包,其工厂方法

+ (TencentApiReq *)reqFromSeq:(NSInteger)apiSeq
type :(TencentReqMessageType)type;
参数含义
apiSeq请求序列号
type请求类型

其中,type为TencentReqMessageType枚举类型,其枚举值含义如下:

TencentReqMessageType含义
ReqFromTencentAppQueryContentTX APP请求内容填充(需要第三方开发者填充完成内容后需要主动调用sendRespMessageToTencentApp)
ReqFromTencentAppShowContentTX APP请求展现内容 (不用调用答复)
ReqFromThirdAppQueryContent第三方 APP 请求内容
ReqFromThirdAppShowContent第三方 APP 请求展现内容(类似分享)
返回顶部