如何为用户Facebook的Milestone创建活动

时间:2014-08-23 20:47:22

标签: facebook facebook-graph-api

如何使用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 */
  }
}
);

0 个答案:

没有答案