I am trying to create facebook events via cron-job. Events should be created on behalf of users of my facebook-connect website who provided offline access. I have session_keys whose validity does not expire but cannot make it work! Creating events on behalf of my application works like a charm, it's just not what I want ...
var_dump($event) with some randomly generated data:
'name' => string 'Try a athirst these and' (length=23)
'tagline' => string 'as it that he down the almost the' (length=33)
'description' => string 'that deeper but is sea whenever lead all a stream knowing robust bakehouses attending have am it pent for own quick' (length=115)
'category' => int 5
'subcategory' => int 52
'location' => string 'same as more the' (length=16)
'start_time' => int 1263630600
'end_time' => int 1263654000
'street' => string 'This Was Ships My 807' (length=21)
'phone' => string '49 692 324' (length=10)
'email' => string 'oeott@yahoo.com' (length=15)
'privacy_type' => string 'OPEN' (length=4)
<?php
$facebook = new Fb(FACEBOOK_API_KEY, FACEBOOK_API_SECRET);
$facebook->api_client->session_key = '5de03e54cb359f9asf3435365e-4588985454';
$eid = $facebook->api_client->events_create(json_encode($event));
?>
Results in: "exception" FacebookRestClientException 'with the message' Invalid parameter '"
Can anyone save my day?
source
share