From fdc7bfcc51a1eb599773145549fe79e521b56821 Mon Sep 17 00:00:00 2001 From: zach Date: Mon, 14 Jul 2008 04:09:49 -0400 Subject: Stubs for all Twitter-API methods darcs-hash:20080714080949-ca946-7372d114c1db9f48aa79f7bd8a5f67042da37ac4.gz --- actions/apistatuses.php | 77 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 actions/apistatuses.php (limited to 'actions/apistatuses.php') diff --git a/actions/apistatuses.php b/actions/apistatuses.php new file mode 100644 index 000000000..728a43180 --- /dev/null +++ b/actions/apistatuses.php @@ -0,0 +1,77 @@ +. + */ + +if (!defined('LACONICA')) { exit(1); } + +class ApistatusesAction extends Action { + + function public_timeline($args) { + parent::handle($args); + + print "Public Timeline!\n"; + exit(); + } + + + function show($args, $apidata) { + parent::handle($args); + + common_debug("statuses/show"); + print_r($args); + print_r($apidata); + + exit(); + + } + + function update($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + } + + function replies($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + } + + function destroy($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + } + + # User Methods + + function friends($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + } + + function followers($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + } + + function featured($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + } + +} + + -- cgit v1.2.3-54-g00ecf