001.
<?
002.
header(
"Content-Type: text/html; Charset=utf-8"
);
003.
header(
"pragma: no-cache"
);
004.
header(
"Expires: Wed, 31 May 2000 14:59:58 GMT"
);
005.
header(
"Cache-control: no-cache"
);
006.
007.
008.
009.
function
url_rfc3986(
$str
) {
010.
011.
return
str_replace
(
'%7E'
,
'~'
, rawurlencode(
$str
));
012.
}
013.
014.
015.
016.
017.
$twitter_url
=
'https://api.twitter.com/oauth/access_token'
;
018.
019.
020.
021.
022.
$oauth_consumer_key
=
"Consumer key"
;
023.
$oauth_consumer_secret
=
"Consumer secret"
;
024.
$oauth_token
=
$_GET
[
'oauth_token'
];
025.
$oauth_secret
=
$_GET
[
'oauth_token_secret'
];
026.
027.
028.
$mt
= microtime();
029.
$rand
= mt_rand();
030.
$oauth_nonce
= md5(
$mt
.
$rand
);
031.
032.
$oauth_signature_method
=
"HMAC-SHA1"
;
033.
$oauth_timestamp
=
mktime
();
034.
035.
$oauth_version
=
"1.0"
;
036.
037.
038.
039.
040.
041.
042.
043.
044.
045.
046.
047.
048.
$base_string
=
"POST"
;
049.
$base_string
.=
"&"
. url_rfc3986(
$twitter_url
);
050.
$base_string
.=
"&"
;
051.
052.
$base_string
.= url_rfc3986(
"oauth_consumer_key"
).
"%3D"
.url_rfc3986(
$oauth_consumer_key
).
"%26"
;
053.
$base_string
.= url_rfc3986(
"oauth_nonce"
).
"%3D"
.url_rfc3986(
$oauth_nonce
).
"%26"
;
054.
$base_string
.= url_rfc3986(
"oauth_signature_method"
).
"%3D"
.url_rfc3986(
$oauth_signature_method
).
"%26"
;
055.
$base_string
.= url_rfc3986(
"oauth_timestamp"
).
"%3D"
.url_rfc3986(
$oauth_timestamp
).
"%26"
;
056.
$base_string
.= url_rfc3986(
"oauth_token"
).
"%3D"
.url_rfc3986(
$oauth_token
).
"%26"
;
057.
$base_string
.= url_rfc3986(
"oauth_verifier"
).
"%3D"
.url_rfc3986(
$_GET
[
'oauth_verifier'
]);
058.
$base_string
.= url_rfc3986(
"oauth_version"
).
"%3D"
.url_rfc3986(
$oauth_version
);
059.
060.
061.
062.
063.
064.
065.
066.
067.
$oauth_signature
=
068.
base64_encode
( hash_hmac(
069.
"sha1"
,
070.
$base_string
,
071.
url_rfc3986(
$oauth_consumer_secret
) .
"&"
. url_rfc3986(
$oauth_secret
),
072.
true
073.
));
074.
075.
076.
077.
078.
079.
$curl
= curl_init();
080.
curl_setopt(
$curl
, CURLOPT_CONNECTTIMEOUT, 30);
081.
curl_setopt(
$curl
, CURLOPT_HEADER, false);
082.
curl_setopt(
$curl
, CURLOPT_RETURNTRANSFER, true);
083.
curl_setopt(
$curl
, CURLOPT_BINARYTRANSFER, true);
084.
curl_setopt(
$curl
, CURLOPT_URL,
$twitter_url
);
085.
curl_setopt(
$curl
, CURLOPT_POST, 1);
086.
087.
088.
089.
090.
$header
=
array
();
091.
$header
[] =
'Expect:'
;
092.
$header
[] =
'Authorization: OAuth '
.
093.
url_rfc3986(
"oauth_consumer_key"
).
"=\""
.url_rfc3986(
$oauth_consumer_key
).
"\","
.
094.
url_rfc3986(
"oauth_nonce"
).
"=\""
.url_rfc3986(
$oauth_nonce
).
"\","
.
095.
url_rfc3986(
"oauth_signature_method"
).
"=\""
.url_rfc3986(
$oauth_signature_method
).
"\","
.
096.
url_rfc3986(
"oauth_timestamp"
).
"=\""
.url_rfc3986(
$oauth_timestamp
).
"\","
.
097.
url_rfc3986(
"oauth_token"
).
"=\""
.url_rfc3986(
$oauth_token
).
"\","
.
098.
url_rfc3986(
"oauth_verifier"
).
"=\""
.url_rfc3986(
$_GET
[
'oauth_verifier'
]).
"\","
.
099.
url_rfc3986(
"oauth_signature"
).
"=\""
.url_rfc3986(
$oauth_signature
).
"\","
.
100.
url_rfc3986(
"oauth_version"
).
"=\""
.url_rfc3986(
$oauth_version
).
"\""
;
101.
102.
curl_setopt(
$curl
, CURLOPT_HTTPHEADER,
$header
);
103.
104.
105.
106.
107.
curl_setopt(
$curl
, CURLOPT_SSL_VERIFYPEER, false);
108.
curl_setopt(
$curl
, CURLOPT_SSL_VERIFYHOST, 1);
109.
110.
111.
112.
113.
$result
= curl_exec(
$curl
);
114.
115.
116.
117.
118.
119.
if
(
$result
=== false) {
120.
echo
'Curl error: '
. curl_error(
$curl
);
121.
exit
();
122.
}
123.
else
{
124.
125.
}
126.
curl_close(
$curl
);
127.
128.
parse_str
(
$result
,
$arr
);
129.
print
$arr
[
'oauth_token'
] .
"\n"
;
130.
print
$arr
[
'oauth_token_secret'
] .
"\n"
;
131.
132.
?>