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.
49 lines
906 B
49 lines
906 B
<?php |
|
|
|
function amcd_content(&$a) { |
|
//header("Content-type: text/json"); |
|
echo <<< EOT |
|
{ |
|
"version":1, |
|
"sessionstatus":{ |
|
"method":"GET", |
|
"path":"/session" |
|
}, |
|
"auth-methods": { |
|
"username-password-form": { |
|
"connect": { |
|
"method":"POST", |
|
"path":"/login", |
|
"params": { |
|
"username":"login-name", |
|
"password":"password" |
|
}, |
|
"onsuccess": { "action":"reload" } |
|
}, |
|
"disconnect": { |
|
"method":"GET", |
|
"path":"\/logout" |
|
} |
|
} |
|
} |
|
"methods": { |
|
"username-password-form": { |
|
"connect": { |
|
"method":"POST", |
|
"path":"\/login", |
|
"params": { |
|
"username":"login-name", |
|
"password":"password" |
|
}, |
|
"onsuccess": { "action":"reload" } |
|
}, |
|
"disconnect": { |
|
"method":"GET", |
|
"path":"\/logout" |
|
} |
|
} |
|
} |
|
} |
|
EOT; |
|
killme(); |
|
} |