當前位置: 首頁>>代碼示例>>Golang>>正文


Golang AuthorizeRequester.GetRedirectURI方法代碼示例

本文整理匯總了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)
}
開發者ID:cristiangraz,項目名稱:fosite,代碼行數:23,代碼來源:flow_authorize_code_auth.go


注:本文中的github.com/ory-am/fosite.AuthorizeRequester.GetRedirectURI方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。