0

我正在使用 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>
4

1 回答 1

1

只看它, oauth.get 需要 3 个参数,但您只有 1 个有效参数——匿名函数。

另外两个——

警报(“啊”);

window.location.replace("index.html");

不是有效参数。可能像参考文献中那样设置要执行的成功和失败函数并将其用作参数会有所帮助。 http://bytespider.github.com/jsOAuth/api-reference/#get

于 2012-08-15T13:50:46.460 回答