diff options
author | Zach Copley <zach@status.net> | 2010-01-07 13:19:21 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-24 16:36:02 -0800 |
commit | 6472331be51bc6d0e670603b2a89fb66022f6b51 (patch) | |
tree | b56209e151bc7450c27dcc01377c2c6fd76bd9f5 /lib | |
parent | 48e5f2b3c5164aa9e47289e5b243e2e1189b71ef (diff) |
Stubs for API OAuth token exchange stuff
Diffstat (limited to 'lib')
-rw-r--r-- | lib/router.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/router.php b/lib/router.php index a8dbbf6d0..0703d7597 100644 --- a/lib/router.php +++ b/lib/router.php @@ -659,11 +659,11 @@ class Router ); $m->connect('oauth/request_token', - array('action' => 'oauthrequesttoken')); + array('action' => 'apioauthrequesttoken')); $m->connect('oauth/access_token', - array('action' => 'oauthaccesstoken')); + array('action' => 'apioauthaccesstoken')); $m->connect('oauth/authorize', - array('action' => 'oauthauthorize')); + array('action' => 'apioauthauthorize')); foreach (array('subscriptions', 'subscribers') as $a) { $m->connect(':nickname/'.$a.'/:tag', |