1

我正在尝试使用 Graph API 和 PHP 将事件发布到我的 facebook 个人资料。我已经成功创建了一个活动,但它没有发布在我的个人资料上,而只发布在我的应用页面上。fb-app 是活动的创建者,但我希望我自己的个人资料成为创建者,并且我希望它出现在我的提要中。我怎样才能做到这一点?

$token = file_get_contents('https://graph.facebook.com/oauth/access_token?type=client_cred&client_id=MY_CLIENT_ID&client_secret=MY_CLIENT_SECRET');
$ch=curl_init('https://graph.facebook.com/MY_PROFILE_ID/events');
curl_setopt($ch, CURLOPT_POSTFIELDS, "name=test event&start_time=2011-07-16T19:20&location=someplace&".$token.""); 
curl_exec($ch);
curl_close($ch);
4

1 回答 1

0

我使用php sdk ...

$eventInfo = array(
            'name'         => 'name',
            'description'  => strip_tags('description'),
            'owner'         => 'Owner',
            'location'     => 'Location name and street',
            'city'         => 'city',
            'start_time'   => 'starttime',
            'end_time'     => 'endtime',
            'privacy_type' => 'OPEN'
        );
$microFlyerBig = 'http://www.example.com/www/img/img.jpg';
$eventInfo[basename($microFlyerBig)] = "@" . realpath($microFlyerBig);
$fbEventId = $facebook->api("/me/events", "post", $eventInfo);
$fbEventId = $fbEventId['id'];
于 2011-07-13T11:46:51.640 回答