ในหนึ่งในแอพของฉันฉันต้องได้รับข้อมูลจาก Facebook ... ฉันกำลังทำสิ่งนี้:
ฉันได้สร้างID แอปแล้ว มันเข้าสู่ระบบสำเร็จ แต่หลังจากออกจากระบบฉันเข้าสู่ระบบแล้วมันให้ฉัน:
ฉันทำอะไรผิด ฉันกำลังใช้SDK ของ Facebook ... ฉันได้ติดตั้ง Facebook บนโทรศัพท์ของฉัน ... มันทำงานได้ดีภายในตัวจำลอง แต่นั่นไม่ได้ติดตั้งแอปพลิเคชั่น Facebook inbuilt
นี่คือรหัสของฉัน:
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");
}