如何使用Facebook Graph API为Milestone创建一个日常事件,例如减肥
像:
/* make the API call */
FB.api(
"/{page-id}/milestones",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
,而不是页面,让用户使用,如:
/* make the API call */
FB.api(
"/me/milestones",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);