コメント |
@HTML
<a href="http://logicalerror.seesaa.net/article/209313321.html" target="_blank">PHP : Twitter への投稿 : バージョン2</a>
<a href="http://lightbox.matrix.jp/ginpro/patio.cgi?mode=view2&f=352&no=0&w=910&type=ref&opt=text-align:left;margin-left:5px;&xml=y" target="_blank">Twitter で投稿する為のトークンを取得するコールバック後の Twitter アクセス</a>
@HEND
[[get_access_token.php で実際に投稿する為のトークンを取得します]]
@DIV
<?
session_start();
header( "Content-Type: text/html; Charset=utf-8" );
header( "pragma: no-cache" );
header( "Expires: Wed, 31 May 2000 14:59:58 GMT" );
header( "Cache-control: no-cache" );
?>
<form method="POST" action="get_access_token.php">
<input type="submit" value="送信"><br>
<pre>
oauth_token :
<input
type="text"
name="oauth_token"
value="<?= $_GET['oauth_token'] ?>"
size="80"
>
oauth_verifier :
<input
type="text"
name="oauth_verifier"
value="<?= $_GET['oauth_verifier'] ?>"
size="80"
>
oauth_token_secret :
<input
type="text"
name="oauth_token_secret"
value="<?= $_SESSION['oauth_token_secret'] ?>"
size="80"
>
</pre>
</form>
@END
|