ZhiYi/ZhiYi.Core.Api/GrpcService/Protos/captcha.proto

22 lines
446 B
Protocol Buffer
Raw Normal View History

2025-02-21 01:14:39 +00:00
syntax = "proto3";
option csharp_namespace = "ZhiYi.Core.Api.GrpcService.Protos.CaptchaServerProtobufs";
package signservice;
//<2F><>ȡǩ
service SignatureService {
rpc GetSignatureService(GetSignatureRequest) returns (GetSignatureResponse);
}
message GetSignatureRequest{
string app_secret = 1; //<2F><>Կ
string path = 2; //<2F><><EFBFBD><EFBFBD>·<EFBFBD><C2B7>
string access_token = 3; //<2F><><EFBFBD><EFBFBD>
}
//<2F><>ȡǩ<C8A1><C7A9><EFBFBD><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD>
message GetSignatureResponse{
string sign_str = 1;
}