18 lines
419 B
Protocol Buffer
18 lines
419 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "wechat.proto";
|
|
|
|
package wechat_proto;
|
|
option go_package = "../wechat";
|
|
|
|
// CGI 971 - extdeviceloginconfirmget
|
|
message ExtDeviceLoginConfirmGetRequest {
|
|
optional string D = 1; // 登录URL
|
|
optional bytes F = 2; // 额外数据
|
|
}
|
|
|
|
message ExtDeviceLoginConfirmGetResponse {
|
|
optional BaseResponse BaseResponse = 1;
|
|
optional bytes ConfirmData = 2; // 确认数据(6500+字节)
|
|
}
|