我遵循本教程https://dev.outlook.com/restapi/tutorial/java为了遍历创建一个简单的JavaSpring MVC应用程序的过程,该应用程序检索Office 365或Outlook.com.中的消息
到目前为止我做了什么:
这里的控制器类:
@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/office 365/service/mail我认为问题出在我们的重定向URL http://localhost:8080/controller/auth/authorize上。
这是错误:回复地址http://localhost:8080/controller/auth/authorize没有使用安全方案。**
我们的应用程序需要身份验证,所以在我使用入口url之前,我手动登录我们的应用程序,然后点击入口url。我需要以不需要身份验证的方式回复url吗?如果是这种情况,我可以简单地修改web.xml并创建一个类来通过身份验证。如果这不是问题所在,我将感谢您的帮助。
我也尝试使用HTTPS,但它导致了另一个错误。
谢谢你!
Azure不会从授权请求重定向到非HTTPS URL。Localhost是唯一的例外。你需要用HTTPS来保护你的网站,并确保你给它的重定向是HTTPS。
我正在使用JMS(ActiveMQ)作为登录服务实现一个请求-回复模式。一切都很好。我在消息中发送用户名和密码,然后用数据库中的加密检查密码的加密版本。这部分我使用JASPYT。 我担心的是通过JMS发送未加密的密码。这样的做法会给我带来安全隐患吗?不幸的是,JASPYT库不允许我将摘要与另一个摘要进行比较,只允许将原始密码与保存的摘要进行比较;这就是为什么我要通过网络发送密码。 消息是否可能被拦
问题内容: 我在mod_wsgi / Apache上安装了flask应用程序,需要记录用户的IP地址。request.remote_addr返回“ 127.0.0.1”,此修复程序试图更正此错误,但是我发现Django出于安全原因删除了类似的代码。 有没有更好的方法来安全地获取用户的真实IP地址? 编辑:也许我缺少明显的东西。我应用了werkzeug / Flask的修复程序, 但是当我尝试更改标
我已经编写了这两个类,一个用于客户端,另一个用于服务器。当我运行这两个类时,我收到以下错误: 问题是什么?我也使用TCPview软件,只有两个使用同一端口。这两个进程属于应用程序。 代码如下: 服务器代码 客户代码
我遵循了官方配置-Spring-启动-启动-java-app-with-azure-active-目录教程,但我似乎无法让它工作。我已经确认重定向url与使用相同的安全控制器编写的完全一样。 以下是我的请求标题: 请注意,该位置包含我的重定向URI: 我还回顾了其他问题,感觉很接近,但正如前面提到的,教程提供了什么,所以应该可以。 如果您需要任何其他信息,请告诉我。 请求Id:a6cb6d0d-9
本文向大家介绍Apache简介及安全配置方案,包括了Apache简介及安全配置方案的使用技巧和注意事项,需要的朋友参考一下 0×00 测试环境 centos6.5+apache2.2.15+php5.3.3 0×01 php的运行模式介绍 php的运行模式分四种: 1. CGI通用网关接口 2. fast-cgi常驻型的CGI 3. cli命令行运行 4. web模块模式 一般情况下,apache
任何人请建议如何摆脱已经运行的应用程序。我试过很多关于杀戮过程的东西,但没有一个是真的奏效的。