In una delle mie app ho bisogno di ottenere dati da Facebook ... Sto facendo questo:
Ho creato l' ID app . Si accede correttamente, ma dopo aver effettuato la disconnessione, accedo e quindi mi dà:
Cosa sto facendo di sbagliato? Sto usando Facebook SDK ... Ho installato Facebook sul mio telefono ... Funziona bene all'interno di un emulatore, ma non è installata l'applicazione Facebook integrata.
Questo è il mio codice:
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");
}