是否有人使用Google脚本向Facebook个人资料发布消息?
我找到了这段代码但无法找到获取graph id
的方法...
function updateStatus(){
var myId="";
var myAppAccess_token="APP-ID|APP-SECRET";
var graphUrl="https://graph.facebook.com/"+myId+"/feed";
var theDate=new Date().toString();
UrlFetchApp.fetch(graphUrl,{method:"post",payload:{
message:"foo\n" + theDate,
access_token:myAppAccess_token
}
});
}