27 lines
1.0 KiB
Protocol Buffer
27 lines
1.0 KiB
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "wechat.proto";
|
|
|
|
package wechat_proto;
|
|
option go_package = "../wechat";
|
|
|
|
// 外部设备登录确认OK请求 (CGI ID: 972)
|
|
// 对应 protobuf 类: fs4.mj0
|
|
message ExtDeviceLoginConfirmOkRequest {
|
|
optional BaseRequest BaseRequest = 1;
|
|
optional string D = 2; // 登录URL (https://login.weixin.qq.com/l/xxx)
|
|
optional string E = 3; // 设备ID列表,逗号分隔 (wxid_xxx,newsapp,wxid_xxx,weixin)
|
|
repeated string F = 4; // 扩展字段列表
|
|
optional bool G = 5; // 布尔标志1
|
|
optional int32 H = 6; // 整数标志
|
|
optional bool M = 7; // 布尔标志2
|
|
}
|
|
|
|
// 外部设备登录确认OK响应 (CGI ID: 972)
|
|
message ExtDeviceLoginConfirmOkResponse {
|
|
optional BaseResponse BaseResponse = 1;
|
|
optional uint32 Status = 2; // 状态码
|
|
optional string Message = 3; // 响应消息
|
|
optional bytes ResultData = 4; // 结果数据
|
|
}
|