AADSTS50011答复地址未使用安全方案[AZURE] [英] AADSTS50011 The reply address is not using a secure scheme[AZURE]

查看:529
本文介绍了AADSTS50011答复地址未使用安全方案[AZURE]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在按照本教程 https://dev.outlook.com/restapi/tutorial/java ,以逐步完成创建简单的Java Spring MVC应用程序的过程,该应用程序可在Office 365或Outlook.com中检索消息.

I was following this tutorial https://dev.outlook.com/restapi/tutorial/java in order to walk through the process of creating a simple Java Spring MVC app that retrieves messages in Office 365 or Outlook.com.

我到目前为止所做的:

  • 在AZURE-365-MAIL-API注册中注册了我们的应用程序
  • 在我的应用程序中使用了appId,appPassword和redirectUrl并发出了请求.

这是控制器类:

@RestController
@RequestMapping("/auth")
public class AuthorizeController {

@RequestMapping(value = "/authorize", method = RequestMethod.GET)
public JasonMessage authorize(
        @RequestParam("code") String code,
        @RequestParam("id_token") String idToken,
        @RequestParam("state") UUID state,
        HttpServletRequest request) {
    {
        // Get the expected state value from the session
        HttpSession session = request.getSession();
        UUID expectedState = (UUID) session.getAttribute("expected_state");
        UUID expectedNonce = (UUID) session.getAttribute("expected_nonce");

        // Make sure that the state query parameter returned matches
        // the expected state
        if (state.equals(expectedState)) {
            session.setAttribute("authCode", code);
            session.setAttribute("idToken", idToken);
        } else {
            session.setAttribute("error", "Unexpected state returned from authority.");
        }

        JasonMessage jasonMessage= new JasonMessage();
        jasonMessage.setStatus("success");
        jasonMessage.setData("id_token",idToken);
        jasonMessage.setData("code",code);
        jasonMessage.setData("state",state);
        return jasonMessage;
    }

}

}

这也是入口点:

@RestController
@RequestMapping("/office365")
public class IndexController {

@RequestMapping(value = "/service/mail",
        method = RequestMethod.GET)
public void Office365(Model model, HttpServletRequest request, HttpServletResponse response) {
    UUID state = UUID.randomUUID();
    UUID nonce = UUID.randomUUID();

    // Save the state and nonce in the session so we can
    // verify after the auth process redirects back
    HttpSession session = request.getSession();
    session.setAttribute("expected_state", state);
    session.setAttribute("expected_nonce", nonce);

    String loginUrl = AuthHelper.getLoginUrl(state, nonce);
    model.addAttribute("loginUrl", loginUrl);




    try {
         response.sendRedirect(loginUrl);
    } catch (IOException e) {
        e.printStackTrace();

    }
}



public class AuthHelper {


private static final String authority = "https://login.microsoftonline.com";
private static final String authorizeUrl = authority + "/common/oauth2/v2.0/authorize";

private static String[] scopes = {
        "openid",
        "offline_access",
        "profile",
        "https://outlook.office.com/mail.read"
};

private static String appId = "9489e4b5-875d-4bd7-924b-88b3b562ccc7";
private static String appPassword = "0uPnh7gJi86eSWWwr6E2M3F";
private static String redirectUrl = "http://localhost:8080/controller/auth/authorize";

private static String getAppId() {
    if (appId == null) {
        try {
            loadConfig();
        } catch (Exception e) {
            return null;
        }
    }
    return appId;
}
private static String getAppPassword() {
    if (appPassword == null) {
        try {
            loadConfig();
        } catch (Exception e) {
            return null;
        }
    }
    return appPassword;
}

private static String getRedirectUrl() {
    if (redirectUrl == null) {
        try {
            loadConfig();
        } catch (Exception e) {
            return null;
        }
    }
    return redirectUrl;
}

private static String getScopes() {
    StringBuilder sb = new StringBuilder();
    for (String scope: scopes) {
        sb.append(scope + " ");
    }
    return sb.toString().trim();
}

private static void loadConfig() throws IOException {
    String authConfigFile = "auth.properties";
    InputStream authConfigStream = AuthHelper.class.getClassLoader().getResourceAsStream(authConfigFile);

    if (authConfigStream != null) {
        Properties authProps = new Properties();
        try {
            authProps.load(authConfigStream);
            appId = authProps.getProperty("appId");
            appPassword = authProps.getProperty("appPassword");
            redirectUrl = authProps.getProperty("redirectUrl");
        } finally {
            authConfigStream.close();
        }
    }
    else {
        throw new FileNotFoundException("Property file '" + authConfigFile + "' not found in the classpath.");
    }
}

public static String getLoginUrl(UUID state, UUID nonce) {

    UriComponentsBuilder urlBuilder = UriComponentsBuilder.fromHttpUrl(authorizeUrl);
    urlBuilder.queryParam("client_id", getAppId());
    urlBuilder.queryParam("redirect_uri", getRedirectUrl());
    urlBuilder.queryParam("response_type", "code id_token");
    urlBuilder.queryParam("scope", getScopes());
    urlBuilder.queryParam("state", state);
    urlBuilder.queryParam("nonce", nonce);
    urlBuilder.queryParam("response_mode", "form_post");

    return urlBuilder.toUriString();
}

}

条目URL:localhost:8080/controller/office365/service/mail 我认为问题出在我们的重定向网址 http://localhost:8080/controller/auth /authorize .

Entry URL: localhost:8080/controller/office365/service/mail I believe the problem is with our redirect url which is http://localhost:8080/controller/auth/authorize .

这是错误: 回复地址" http://localhost:8080/controller/auth/authorize "不是使用安全方案.**

This is the error: The reply address 'http://localhost:8080/controller/auth/authorize' isn't using a secure scheme.**

我们的应用程序需要身份验证,因此在我使用输入URL之前,我先手动登录到我们的应用程序,然后点击输入URL.我是否需要以不需要身份验证的方式放置回复URL?如果是这种情况,我可以简单地修改web.xml并创建一个通过身份验证的类.如果那不是问题,将不胜感激.

Our application requires authentication so before I use the entry url, I manually login to our application and then hit the entry url. Do I need to put the reply url in a way it won't require authentication ? If that is the case I can simply modify web.xml and create a class to by pass authentication. If that is not the problem, I would appreciate your help.

我也尝试过使用HTTPS,但它导致了另一个错误.

I've also tried using HTTPS but it caused another error.

谢谢!

推荐答案

Azure不会从授权请求重定向到非HTTPS URL. Localhost是唯一的例外.您需要使用HTTPS保护您的网站,并确保您提供的重定向是HTTPS.

Azure will not redirect from an authorization request to a non-HTTPS URL. Localhost is the only exception. You'll need to secure your site with HTTPS and make sure that the redirect you give it is HTTPS.

这篇关于AADSTS50011答复地址未使用安全方案[AZURE]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆