Facebook Huzurlu PHP İstemci - Bir Kullanıcı Olaylar olsun

1 Cevap php

im Facebook PHP istemci kütüphanesi kullanarak ve bir kullanıcı olarak oturum açmadan bir kullanıcının Olaylar almak istiyorum.

Bu mümkün mü?

Ben kullanıcı kimliği var ve events.get yöntem bir parametre UID vardır.

<?php
//  Configure
$apiKey     = 'xxx';
$secretKey  = 'xxx';

// Include Lib
require_once('facebook.php');

// init main object
$facebook = new Facebook($apiKey,$secretKey);
$events = $facebook->api_client->events_get(123456);
?>

so this piece of code does not work. if i first require a login of a certain user, i get my results. isnt it possible to get events of a user without logging in?

1 Cevap

Events.get için Facebook API Dokümanlar göre

http://wiki.developers.facebook.com/index.php/Events.get

This method no longer requires a session key. However if you call this method without an active user session, you can only get the events for which your application was the creator; you can see only those event attendees who authorized your application. Applications can create events for users if the users grant the application the create_event extended permission.

Temelde, kullanıcı oturum açmış olmanız gerekir, aksi takdirde sadece app oluşturduğunuz olayları görebilirsiniz.