Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
618 B
24 lines
618 B
<?php |
|
|
|
|
|
|
|
function rsd_xml_content(&$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>Friendika</engineName> |
|
<engineLink>http://friendika.com/</engineLink> |
|
<apis> |
|
<api name="Twitter" preferred="true" apiLink="'.$a->get_baseurl().'/api/" blogID=""> |
|
<settings> |
|
<docs>http://status.net/wiki/TwitterCompatibleAPI</docs> |
|
<setting name="OAuth">false</setting> |
|
</settings> |
|
</api> |
|
</apis> |
|
</service> |
|
</rsd> |
|
'; |
|
die(); |
|
} |