在我的一个应用程序中,我需要从Facebook获取数据…我是这样做的:
我已经创建了应用ID。它成功登录,但注销后,我登录,然后它给我:
我做错了什么?我正在使用Facebook SDK…我已经在手机上安装了Facebook。它在模拟器中运行良好,但没有安装内置的Facebook应用程序。
这是我的代码:
if (FB_APP_ID == null) {
Builder alertBuilder = new Builder(this);
alertBuilder.setTitle("Warning");
alertBuilder.setMessage("A Facebook Applicaton ID must be " +
"specified before running this example: see App.java");
alertBuilder.create().show();
}
// Initialize the dispatcher
Dispatcher dispatcher = new Dispatcher(this);
dispatcher.addHandler("login", LoginHandler.class);
dispatcher.addHandler("stream", StreamHandler.class);
dispatcher.addHandler("logout", LogoutHandler.class);
// If a session already exists, render the stream page
// immediately. Otherwise, render the login page.
Session session = Session.restore(this);
if (session != null) {
dispatcher.runHandler("stream");
}
else {
dispatcher.runHandler("login");
}
如果你遇到了这个问题,把这个键输入到你的developer.facebook.com:
然后确保你的应用在developer.facebook.com上是活跃的。
这个绿色圆圈表示应用程序是活的:
如果不是,那么按照以下两个步骤让你的应用上线:
步骤1进入应用程序→设置→添加“联系邮箱”,选择“保存更改”。
步骤2进入App Review选项,确保该选项为Yes。我加了一张截图:
注意:如果你想复制hashkey,请检查LogCat中的BlueServiceQueue。
您必须创建两个键散列,一个用于调试,另一个用于发布。
对于Debug键哈希:
在OS X上运行:
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64
在Windows上运行:
keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl
base64
调试键哈希源代码
对于Release键哈希:
在OS X上,运行(将<>之间的值替换为您的值):
keytool -exportcert -alias <RELEASE_KEY_ALIAS> -keystore <RELEASE_KEY_PATH> | openssl sha1 -binary | openssl base64
在Windows上,使用(将<>之间的值替换为您的值):
keytool -exportcert -alias <RELEASE_KEY_ALIAS> -keystore <RELEASE_KEY_PATH> | openssl sha1 -binary | openssl base64
释放键哈希源代码
如果你遇到了这个问题,把这个键输入到你的developer.facebook.com:
然后确保你的应用在developer.facebook.com上是活跃的。
这个绿色圆圈表示应用程序是活的:
如果不是,那么按照以下两个步骤让你的应用上线:
步骤1进入应用程序→设置→添加“联系邮箱”,选择“保存更改”。
步骤2进入App Review选项,确保该选项为Yes。我加了一张截图:
注意:如果你想复制hashkey,请检查LogCat中的BlueServiceQueue。