本文整理匯總了Golang中github.com/ory-am/fosite.AuthorizeRequester.GetRedirectURI方法的典型用法代碼示例。如果您正苦於以下問題:Golang AuthorizeRequester.GetRedirectURI方法的具體用法?Golang AuthorizeRequester.GetRedirectURI怎麽用?Golang AuthorizeRequester.GetRedirectURI使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/ory-am/fosite.AuthorizeRequester
的用法示例。
在下文中一共展示了AuthorizeRequester.GetRedirectURI方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: HandleAuthorizeEndpointRequest
func (c *AuthorizeExplicitGrantHandler) HandleAuthorizeEndpointRequest(ctx context.Context, req *http.Request, ar fosite.AuthorizeRequester, resp fosite.AuthorizeResponder) error {
// This let's us define multiple response types, for example open id connect's id_token
if !ar.GetResponseTypes().Exact("code") {
return nil
}
if !ar.GetClient().GetResponseTypes().Has("code") {
return errors.Wrap(fosite.ErrInvalidGrant, "")
}
if !fosite.IsRedirectURISecure(ar.GetRedirectURI()) {
return errors.Wrap(fosite.ErrInvalidRequest, "")
}
client := ar.GetClient()
for _, scope := range ar.GetRequestedScopes() {
if !c.ScopeStrategy(client.GetScopes(), scope) {
return errors.Wrap(fosite.ErrInvalidScope, fmt.Sprintf("The client is not allowed to request scope %s", scope))
}
}
return c.IssueAuthorizeCode(ctx, req, ar, resp)
}