我正在使用 jsOAuth:https ://github.com/bytespider/jsOAuth
我想进入 Twitter OAuth 页面,用户在该页面输入他们的用户名/密码,以便我的应用程序可以获取另一个用于发推文等的令牌。(仅供参考,它不是网络应用程序。它是一个移动应用程序[我知道不显示密钥和秘密等])
当我单击此按钮时它不起作用(你知道为什么吗?):
<html>
<head>
<script src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="jsOAuth-1.3.4.js"></script>
<script type="text/javascript">
function gimmiegimmie(){
var options = {
consumerKey: 'blahblahblah',
consumerSecret: 'blahblahblah',
callbackUrl: 'http://www.wouwqheqweiqiuwheiug8yg2g123e.com/' };
oauth = OAuth(options);
oauth.get('https://api.twitter.com/oauth/request_token',
function(data) {
requestParams = data.text;
window.location.href = "https://api.twitter.com/oauth/authorize?"+data.text;},
alert("ahhhh");
window.location.replace( "index.html" );
);}
</script>
</head>
<body bgcolor="black" >
<center>
<br>
<button type="button" id="authbut" style="font-size:45px;height: 100px; width: 75%" onClick="gimmiegimmie();">OAuth</button><br>
<br>
</center>
</body>
</html>