Roland Häder
4dce3d8224
--------------------- function bla (App &$a) { $a->bla = 'stuff'; } --------------------- Signed-off-by: Roland Häder <roland@mxchange.org>
24 lines
623 B
PHP
24 lines
623 B
PHP
<?php
|
|
|
|
|
|
|
|
function rsd_xml_content(App &$a) {
|
|
header ("Content-Type: text/xml");
|
|
echo '<?xml version="1.0" encoding="UTF-8"?>
|
|
<rsd version="1.0" xmlns="http://archipelago.phrasewise.com/rsd">
|
|
<service>
|
|
<engineName>Friendica</engineName>
|
|
<engineLink>http://friendica.com/</engineLink>
|
|
<apis>
|
|
<api name="Twitter" preferred="true" apiLink="'.App::get_baseurl().'/api/" blogID="">
|
|
<settings>
|
|
<docs>http://status.net/wiki/TwitterCompatibleAPI</docs>
|
|
<setting name="OAuth">false</setting>
|
|
</settings>
|
|
</api>
|
|
</apis>
|
|
</service>
|
|
</rsd>
|
|
';
|
|
die();
|
|
} |