aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Rsd_xml.php
blob: 114ecc49bfdc47ead6df6ac847857ae1d1a4bfdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
namespace Zotlabs\Module;

// What do we need this for?


class Rsd_xml extends \Zotlabs\Web\Controller {

	function get() {
		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>Red</engineName>
	     <engineLink>http://friendica.com/</engineLink>
	     <apis>
	       <api name="Twitter" preferred="true" apiLink="'.z_root().'/api/" blogID="">
	         <settings>
	           <docs>http://status.net/wiki/TwitterCompatibleAPI</docs>
	           <setting name="OAuth">false</setting>
	         </settings>
	       </api>
	     </apis>
	   </service>
	 </rsd>
		';
	die();
	}
}