当前位置: 首页>>代码示例>>Java>>正文


Java OAuthResponse.getLocationUri方法代码示例

本文整理汇总了Java中org.apache.oltu.oauth2.common.message.OAuthResponse.getLocationUri方法的典型用法代码示例。如果您正苦于以下问题:Java OAuthResponse.getLocationUri方法的具体用法?Java OAuthResponse.getLocationUri怎么用?Java OAuthResponse.getLocationUri使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.oltu.oauth2.common.message.OAuthResponse的用法示例。


在下文中一共展示了OAuthResponse.getLocationUri方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: writeOAuthQueryResponse

import org.apache.oltu.oauth2.common.message.OAuthResponse; //导入方法依赖的package包/类
public static void writeOAuthQueryResponse(HttpServletResponse response, OAuthResponse oAuthResponse) {
    final String locationUri = oAuthResponse.getLocationUri();
    try {

        final Map<String, String> headers = oAuthResponse.getHeaders();
        for (String key : headers.keySet()) {
            response.addHeader(key, headers.get(key));
        }

        response.setStatus(oAuthResponse.getResponseStatus());
        response.sendRedirect(locationUri);

    } catch (IOException e) {
        throw new IllegalStateException("Write OAuthResponse error", e);
    }
}
 
开发者ID:monkeyk,项目名称:oauth2-shiro,代码行数:17,代码来源:WebUtils.java

示例2: authorize

import org.apache.oltu.oauth2.common.message.OAuthResponse; //导入方法依赖的package包/类
private String authorize(HttpServletRequest request, String redirectURI, Authentication authentication) throws OAuthSystemException {
    User principal = (User) authentication.getPrincipal();
    if (hasAuthorized(principal)) {
        // 生成code
        String code = new OAuthIssuerImpl(new MD5Generator()).authorizationCode();

        // 把授权码存入
        oAuth2Service.addCode(code, principal.getOpenId());

        // 构建oauth2授权返回信息
        OAuthResponse oauthResponse = OAuthASResponse
                .authorizationResponse(request, HttpServletResponse.SC_FOUND)
                .setCode(code)
                .location(redirectURI)
                .buildQueryMessage();
        return "redirect:" + oauthResponse.getLocationUri();
    } else {
        return "oauth2/authorize";
    }
}
 
开发者ID:microacup,项目名称:microbbs,代码行数:21,代码来源:OAuth2Server.java


注:本文中的org.apache.oltu.oauth2.common.message.OAuthResponse.getLocationUri方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。