1
我的Facebook應用的狀態和評論反饋建議不要在牆上張貼時預先填寫文本。但是我可以在Facebook Graph API文檔Graph API Publishing section中找到使用message
參數。
Facebook SDK圖形API在牆上張貼消息
Bundle params = new Bundle();
params.putString("message", "This is a test message");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/me/feed",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
我已經驗證它,它工作正常。根據更新的Facebook政策允許嗎?
https://developers.facebook.com/docs/apps/review/prefill – CBroe