我正在使用facebook4j庫來整合Facebook api在java中。但是,當我嘗試使用place屬性發布照片時,我遇到了問題。Facebook4j庫張貼照片問題
Media media = new Media(new File(<image-path-here>));
PhotoUpdate update = new PhotoUpdate(media);
update.message("photo upload test");
update.setPlace("Bangalore");
facebook.postPhoto(update);
,但我得到以下異常:SEVERE: Servlet.service() for servlet [post] in context with path [/Sample] threw exception [message - An unknown error has occurred.FacebookException{statusCode=500, errorType='OAuthException', errorMessage='An unknown error has occurred.', errorCode=1, errorSubcode=-1, version=2.2.0}
事實證明沒有「setplace」其作品完全罰款。我不知道我是否按照正確的方式進行搜索並搜索了一些樣本。但找不到一個,任何人都可以請建議我在這裏做錯了什麼?我可以在沒有設置位置的情況下在Facebook上發佈照片,但我需要爲圖片設置位置。
謝謝
有沒有人找到了解決上述問題的解決方案?我真的在這裏苦苦掙扎:( – Ishaan 2014-11-17 17:55:10