Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Facebook API を介したイベント作成の戻り関数とは何ですか?
イベントの作成が成功すると返さevent idれますが、イベントが正常に作成されたことをコードでどのように示すことができますか?
event id
誰でも私を助けることができますか?
応答ステータスを確認する必要があります。
//Do Facebook api call Response r = WS.url("graphapi").get().get(); if (r.getStatus() == 200 ) { Logger.info("api success"); } else { Logger.error("api error"); }