W jednej z moich aplikacji muszę pobrać dane z Facebooka ... Robię to:
Utworzyłem identyfikator aplikacji . Loguje się pomyślnie, ale po wylogowaniu loguję się, a następnie daje mi:
Co robię źle? Korzystam z zestawu SDK Facebooka ... Zainstalowałem Facebooka na moim telefonie ... Działa dobrze w emulatorze, ale nie ma zainstalowanej wbudowanej aplikacji Facebook.
To jest mój kod:
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");
}