1

大家好,我在使用 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 "";
    }
}
}
4

1 回答 1

1

要回答您标题中的问题 -
不,任何用户的应用程序 ID 和密码都是相同的。

这里的问题(我假设)是您的应用程序处于沙盒模式。禁用该模式,一切都应该工作。

沙盒模式用于应用程序开发过程中,只有应用程序设置的“角色”部分中列出的用户才能访问应用程序。

于 2013-04-09T15:40:19.527 回答