summaryrefslogtreecommitdiff
path: root/actions/twitapifriendships.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-02 17:32:27 -0700
committerZach Copley <zach@controlyourself.ca>2009-07-02 17:32:27 -0700
commitacb4c783463660710e894ecb54ebaebb3d1ae77c (patch)
tree279419a018d4c6f8985bfabb36e55ceadbfd7637 /actions/twitapifriendships.php
parentc02acd7341cc3104b75a56e0b8dfd4811e77e278 (diff)
Route and stub for new friendships/show API method
Diffstat (limited to 'actions/twitapifriendships.php')
-rw-r--r--actions/twitapifriendships.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/actions/twitapifriendships.php b/actions/twitapifriendships.php
index 29eb4cc0f..35e016431 100644
--- a/actions/twitapifriendships.php
+++ b/actions/twitapifriendships.php
@@ -160,4 +160,18 @@ class TwitapifriendshipsAction extends TwitterapiAction
}
+ function show($args, $apidata)
+ {
+
+ parent::handle($args);
+
+ if (!in_array($apidata['content-type'], array('xml', 'json'))) {
+ $this->clientError(_('API method not found!'), $code = 404);
+ return;
+ }
+
+ print "gar";
+
+ }
+
} \ No newline at end of file