我正在使用spring创建一个与facebook链接的应用程序。当应用程序启动时,它会将您重定向到登录页面。单击登录按钮后,它会将您重定向到主页。我想要做的是,当点击登录按钮时,它会将您重定向到主页并在最后添加一个唯一的数字。每当我启动我的应用程序时,我都会收到HTTP状态404错误。我无法弄清楚问题是什么。编辑我正在使用Spring Social Quickstart,我对该程序进行的唯一修改是
登录页面
<%@ page session="false" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>Sign In</title>
</head>
<body>
<c:set var="rand"><%= java.lang.Math.round(java.lang.Math.random() * 2) %></c:set>
<form action="<c:url value="/signin/facebook/${rand}" />" method="POST">
<button type="submit">Sign in with Facebook</button>
<input type="hidden" name="scope" value="email,publish_stream,offline_access" />
</form>
</body>
</html>
首页
<%@ page session="false" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>Home</title>
</head>
<body>
<ul>
<li><a href="<c:url value="/signout" />">Sign Out</a></li>
</ul>
<p>${number}</p>
<h3>Your Facebook Friends</h3>
<ul>
<c:forEach items="${friends}" var="friend">
<li><img src="http://graph.facebook.com/<c:out value="${friend.id}"/>/picture" align="middle"/><c:out value="${friend.name}"/></li>
</c:forEach>
</ul>
</body>
</html>
家庭控制器
@RequestMapping(value = "/{rand}", method = RequestMethod.GET)
public String home(@PathVariable("rand") String rand, Model model) throws IOException {
List<Reference> friends = facebook.friendOperations().getFriends();
FacebookProfile profile = facebook.userOperations().getUserProfile();
String userID = facebook.userOperations().getUserProfile().getId();
model.addAttribute("friends", friends);
String accessToken = connectionRepository.getPrimaryConnection(Facebook.class).createData().getAccessToken();
System.out.println(accessToken);
return "home";
}
答案 0 :(得分:0)
您的应用程序的基本URL是什么,您的控制器是否也有根URL?此<c:url value="/signin/facebook/${rand}" />
代码行将生成http://localhost:8080/yourAppname/signin/facebook/12342354665
。
根据配置和其他注释,您应将@RequestMapping(value = "/{rand}", method = RequestMethod.GET)
更改为@RequestMapping(value = "/signin/facebook/{rand}", method = RequestMethod.GET)
。您当前的映射(取决于控制器注释)仅提供根级别URL。
您是否启用了日志记录?您应该能够在日志中看到失败的映射。