You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package auth
import (
"net/http"
"git.noahlan.cn/noahlan/ntool-biz/zero/statusz"
"github.com/zeromicro/go-zero/rest/httpx"
"git.noahlan.cn/n-admin/n-admin-server/api/internal/logic/auth"
"git.noahlan.cn/n-admin/n-admin-server/api/internal/svc"
"git.noahlan.cn/n-admin/n-admin-server/api/internal/types"
)
// swagger:route post /api/auth/oauth/login/byCode auth OauthLoginByCode
//
// Oauth log in by code | Oauth 第三方登录, 客户端自行获取code进行登录
//
// Oauth log in by code | Oauth 第三方登录, 客户端自行获取code进行登录
//
// Parameters:
// + name: body
// require: true
// in: body
// type: OauthLoginByCodeReq
//
// Responses:
// 200: LoginResp
func OauthLoginByCodeHandler ( svcCtx * svc . ServiceContext ) http . HandlerFunc {
return func ( w http . ResponseWriter , r * http . Request ) {
const transErr = true
var req types . OauthLoginByCodeReq
if err := httpx . Parse ( r , & req ) ; err != nil {
statusz . ResponseHandler ( r , w , transErr , nil , err )
return
}
l := auth . NewOauthLoginByCodeLogic ( r , r . Context ( ) , svcCtx )
resp , err := l . OauthLoginByCode ( & req )
statusz . ResponseHandler ( r , w , transErr , resp , err )
}
}