Browse Source

fix proper mf2 names, cast lon/lat as string, optional end, array notation

pull/39/head
sebsel 6 years ago
parent
commit
8c1ffe3f05
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      lib/XRay/Formats/Facebook.php

+ 8
- 8
lib/XRay/Formats/Facebook.php View File

@ -26,10 +26,10 @@ class Facebook extends Format {
'type' => 'event', 'type' => 'event',
'url' => $url, 'url' => $url,
'name' => $fbObject['name'], 'name' => $fbObject['name'],
'start' => $fbObject['start_time'],
'end' => $fbObject['end_time']
'start' => $fbObject['start_time']
); );
if(isset($fbObject['end_time'])) $event['end'] = $fbObject['end_time'];
if(isset($fbObject['description'])) $event['summary'] = $fbObject['description']; if(isset($fbObject['description'])) $event['summary'] = $fbObject['description'];
// Is the event linked to a Page? // Is the event linked to a Page?
@ -48,10 +48,10 @@ class Facebook extends Format {
if(isset($location['zip'])) $card['postal-code'] = $location['zip']; if(isset($location['zip'])) $card['postal-code'] = $location['zip'];
if(isset($location['city'])) $card['locality'] = $location['city']; if(isset($location['city'])) $card['locality'] = $location['city'];
if(isset($location['state'])) $card['region'] = $location['state']; if(isset($location['state'])) $card['region'] = $location['state'];
if(isset($location['street'])) $card['adr'] = $location['street'];
if(isset($location['country'])) $card['country-name'] = $location['country'];
if(isset($location['latitude'])) $card['latitude'] = $location['latitude'];
if(isset($location['longitude'])) $card['longitude'] = $location['longitude'];
if(isset($location['street'])) $card['street-address'] = $location['street'];
if(isset($location['country'])) $card['country'] = $location['country'];
if(isset($location['latitude'])) $card['latitude'] = (string)$location['latitude'];
if(isset($location['longitude'])) $card['longitude'] = (string)$location['longitude'];
} }
@ -82,11 +82,11 @@ class Facebook extends Format {
]; ];
} }
$fb = new \Facebook\Facebook([
$fb = new \Facebook\Facebook(array(
'app_id' => $creds['facebook_app_id'], 'app_id' => $creds['facebook_app_id'],
'app_secret' => $creds['facebook_app_secret'], 'app_secret' => $creds['facebook_app_secret'],
'default_graph_version' => 'v2.9', 'default_graph_version' => 'v2.9',
]);
));
$fbApp = new \Facebook\FacebookApp($creds['facebook_app_id'], $creds['facebook_app_secret']); $fbApp = new \Facebook\FacebookApp($creds['facebook_app_id'], $creds['facebook_app_secret']);
$token = $fbApp->getAccessToken(); $token = $fbApp->getAccessToken();

Loading…
Cancel
Save