update
This commit is contained in:
parent
6605238003
commit
998783d1d6
|
@ -1,17 +1,8 @@
|
|||
package test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"{{.ProjectName}}/server/config"
|
||||
"fusen-basic/env"
|
||||
"fusen-basic/utils/log"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"reflect"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
var fusen *env.Fusen[config.Config]
|
||||
|
|
|
@ -14,13 +14,7 @@ import "google/protobuf/any.proto";
|
|||
service auth {
|
||||
|
||||
// 登录接口
|
||||
rpc ValidToken(ValidTokenRequest) returns (ValidTokenResponse) {
|
||||
// 添加 HTTP POST 网关注解
|
||||
option (google.api.http) = {
|
||||
post: "/api/auth/valid/token"
|
||||
body: "*"
|
||||
};
|
||||
}
|
||||
rpc ValidToken(ValidTokenRequest) returns (ValidTokenResponse) {}
|
||||
|
||||
// 登录接口
|
||||
rpc Login(UserLoginRequest) returns (UserLoginResponse) {
|
||||
|
@ -121,6 +115,19 @@ service auth {
|
|||
|
||||
}
|
||||
|
||||
message Debug {
|
||||
int64 exp = 1;
|
||||
int64 is_cache = 2;
|
||||
int64 is_all_template_tag = 3;
|
||||
}
|
||||
|
||||
message UserInfo {
|
||||
int64 user_id = 1;
|
||||
int64 guest_id = 2;
|
||||
int64 exp = 3;
|
||||
Debug debug = 4;
|
||||
}
|
||||
|
||||
// 验证token的请求
|
||||
message ValidTokenRequest {
|
||||
optional string user_token = 1;
|
||||
|
@ -130,8 +137,7 @@ message ValidTokenRequest {
|
|||
|
||||
// 验证token的请求
|
||||
message ValidTokenResponse {
|
||||
google.protobuf.Struct user_info = 1;
|
||||
google.protobuf.Struct debug_info = 2;
|
||||
UserInfo user_info = 1;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user