Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5e88e760
authored
Jun 04, 2025
by
RedwindA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 支持从 x-goog-api-key header 中获取授权密钥
parent
7c0c6b84
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
middleware/auth.go
+5
-0
No files found.
middleware/auth.go
View file @
5e88e760
...
@@ -189,6 +189,11 @@ func TokenAuth() func(c *gin.Context) {
...
@@ -189,6 +189,11 @@ func TokenAuth() func(c *gin.Context) {
if
skKey
!=
""
{
if
skKey
!=
""
{
c
.
Request
.
Header
.
Set
(
"Authorization"
,
"Bearer "
+
skKey
)
c
.
Request
.
Header
.
Set
(
"Authorization"
,
"Bearer "
+
skKey
)
}
}
// 从x-goog-api-key header中获取key
xGoogKey
:=
c
.
Request
.
Header
.
Get
(
"x-goog-api-key"
)
if
xGoogKey
!=
""
{
c
.
Request
.
Header
.
Set
(
"Authorization"
,
"Bearer "
+
xGoogKey
)
}
}
}
key
:=
c
.
Request
.
Header
.
Get
(
"Authorization"
)
key
:=
c
.
Request
.
Header
.
Get
(
"Authorization"
)
parts
:=
make
([]
string
,
0
)
parts
:=
make
([]
string
,
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment