2016-12-08 14:28:42 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Here we define the syndication targets to be
|
|
|
|
|
* returned by the micropub endpoint.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
return [
|
2016-12-16 11:49:15 +00:00
|
|
|
|
// if you don’t have any targets, then set this to 'targets' => [];
|
2016-12-08 14:28:42 +00:00
|
|
|
|
'targets' => [
|
|
|
|
|
[
|
|
|
|
|
'uid' => 'https://twitter.com/jonnybarnes',
|
|
|
|
|
'name' => 'jonnybarnes on Twitter',
|
|
|
|
|
'service' => [
|
|
|
|
|
'name' => 'Twitter',
|
|
|
|
|
'url' => 'https://twitter.com',
|
|
|
|
|
'photo' => 'https://upload.wikimedia.org/wikipedia/en/9/9f/Twitter_bird_logo_2012.svg',
|
|
|
|
|
],
|
|
|
|
|
'user' => [
|
|
|
|
|
'name' => 'jonnybarnes',
|
|
|
|
|
'url' => 'https://twitter.com/jonnybarnes',
|
2018-10-12 18:49:08 +01:00
|
|
|
|
'photo' => 'https://pbs.twimg.com/profile_images/875422855932121089/W628ZI8w_400x400.jpg',
|
2016-12-08 14:28:42 +00:00
|
|
|
|
],
|
|
|
|
|
],
|
2022-07-09 10:08:26 +01:00
|
|
|
|
],
|
2016-12-08 14:28:42 +00:00
|
|
|
|
];
|