FrazeColder
Lt. Commander
- Registriert
- Okt. 2013
- Beiträge
- 1.721
Hey Community,
Ich bin gerade ein wenig am rumspielen mit der nicht Offizelen Java API von Facebook und Ich bekomme auch eine Verbindung bzw. kann Sachen posten. Aber wenn Ich nur in eine Gruppe was posten will, dann kommst das hier:
Code:
MfG und Danke!
Ich bin gerade ein wenig am rumspielen mit der nicht Offizelen Java API von Facebook und Ich bekomme auch eine Verbindung bzw. kann Sachen posten. Aber wenn Ich nur in eine Gruppe was posten will, dann kommst das hier:
Code:
Exception in thread "main" message - Duplicate status message
code - 506
subcode - 1455006
Relevant information for error recovery can be found on the Facebook Developers Document:
https://developers.facebook.com/docs/graph-api/using-graph-api/#errors
Code:
Code:
Facebook konto = new FacebookFactory().getInstance();
konto.setOAuthAppId("xxx", "xxx");
konto.setOAuthAccessToken(new AccessToken("xxx", null));
ArrayList<String> AllGroups = new ArrayList<String>();
AllGroups.add("416052491765028");
for(int i = 0; i < AllGroups.size(); i++){
konto.postGroupStatusMessage(AllGroups.get(i), "Test by the Graph API");
}
}
}
MfG und Danke!