This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 最初にこの関数を実行し、ログに出力されたURLにアクセスしてOAuth認証する | |
function twitterAuthorizeUrl() { | |
Twitter.oauth.showUrl(); | |
} | |
// OAuth認証成功後のコールバック関数 | |
function twitterAuthorizeCallback(request) { | |
return Twitter.oauth.callback(request); | |
} |