大家好,我在使用 facebook connect 时遇到问题,我正在使用这些 API 让用户使用他们的 facebook 帐户登录到我的 Web 应用程序,作为上一步,我从developer.facebook获得了 App ID 和 APP Secret ,问题是登录不会验证任何帐户,除了我在制作 App ID 和 App 机密时使用的帐户,请帮助我理解这些问题
注意:我使用这些教程将我的 Web 应用程序与 facebook connect 集成
为了更清楚,这是开始 jsf 页面(源代码在我的帖子中提到的链接中可用):
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
</h:head>
<h:body>
<h1>Login Page</h1>
<h:form id="loginForm">
<p:button value="Facebook Connect" href="#{loginPageCode.facebookUrlAuth}" />
<br/><br/>
<h:outputText value="#{loginPageCode.userFromSession}"></h:outputText>
</h:form>
</h:body>
这是托管bean:
@ManagedBean(name = "loginPageCode")
@SessionScoped
public class LoginPageCode implements Serializable {
private static final long serialVersionUID = -1611162265998907599L;
public String getFacebookUrlAuth() {
HttpSession session = (HttpSession) FacesContext.getCurrentInstance()
.getExternalContext().getSession(false);
String sessionId = session.getId();
String appId = "3827326728372872";
String redirectUrl = "http://localhost:8080/Test/index.sec";
String returnValue = "https://www.facebook.com/dialog/oauth?client_id="
+ appId + "&redirect_uri=" + redirectUrl
+ "&scope=email,user_birthday&state=" + sessionId;
System.out.println("Return Value---->"+returnValue);
return returnValue;
}
public String getUserFromSession() {
HttpSession session = (HttpSession) FacesContext.getCurrentInstance()
.getExternalContext().getSession(false);
String userName = (String) session.getAttribute("FACEBOOK_USER");
System.out.println("FACEBOOK_USER-->"+userName);
if (userName != null) {
return "Hello " + userName;
} else {
return "";
}
}
}