はこれを試してみてください:
は
function Login(){
FB.login(function(response) {
if (response.authResponse) {
var access_token = FB.getAuthResponse()['accessToken'];
// alert('Access Token = '+ access_token);
FB.api('/me', function(response) {
alert('welcome ' + response.name + '.');
FB.api('/me/events','post',{
name: 'TEST',
start_time: '2013-06-03T15:00:00-0700',
end_time: '2013-06-03T19:00:00-0700',
description:'Birthday party',
location:'Mumbai',
privacy_type:"OPEN",
},
function(response) {
// alert(response.name);
console.log(response);
alert(response.id);
eventid(response.id);
});
});
} else {
// callAjaxlogout();
//alert('User cancelled login or did not fully authorize.');
}
},{scope: 'create_event,user_events'});
}
HTML:
/*required permissions:create_event,user_events;*/
<button id="login" name="login" onclick="Login()">Login</button>
私は、あなたのサイトでのFacebookのイベントを作成できることと思ういけません。しかし、あなたのサイトに何かを公開することができ、あなたの友人を招待することができます –