4 * StatusNet - a distributed open-source microblogging tool
5 * Copyright (C) 2010, StatusNet, Inc.
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../..'));
23 require_once INSTALLDIR . '/scripts/commandline.inc';
24 require_once INSTALLDIR . '/extlib/OAuth.php';
26 $ini = parse_ini_file("oauth.ini");
28 // Check to make sure we have everything we need from the ini file
29 foreach(array('consumer_key', 'consumer_secret', 'apiroot', 'request_token_url') as $inikey) {
30 if (empty($ini[$inikey])) {
31 print "You forgot to specify a $inikey in your oauth.ini file.\n";
36 $testConsumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']);
37 $requestTokenUrl = $ini['apiroot'] . $ini['request_token_url'];
38 $parsed = parse_url($requestTokenUrl);
41 parse_str($parsed['query'], $params);
42 $params['oauth_callback'] = 'oob'; // out-of-band
44 $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
47 $req = OAuthRequest::from_consumer_and_token(
54 $req->sign_request($hmac_method, $testConsumer, NULL);
55 $r = httpRequest($req->to_url());
56 } catch (Exception $e) {
58 print $e->getMessage();
59 print "\nOAuth Request:\n";
64 $body = $r->getBody();
65 $tokenStuff = array();
67 parse_str($body, $tokenStuff);
69 $tok = $tokenStuff['oauth_token'];
70 $confirmed = $tokenStuff['oauth_callback_confirmed'];
72 if (empty($tokenStuff['oauth_token']) || empty($confirmed) || $confirmed != 'true') {
73 print "Error: $body\n";
77 $authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $tok;
80 print "Authorize URL:\n\n$authurl\n\n";
81 print "Now paste the Authorize URL into your browser and authorize your temporary credentials.\n";
83 function httpRequest($url)
85 $request = HTTPClient::start();
89 'follow_redirects' => true,
90 'connect_timeout' => 120,
92 'ssl_verify_peer' => false,
93 'ssl_verify_host' => false
97 return $request->post($url);