1

我正在使用以下代码在 twitter 上关注

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Page Title</title>
    <script type="text/javascript" src="jquery.min.js"></script>
    <script >

    function followFrd(){

        $.ajax({
            url: 'https://api.twitter.com/1.1/friendships/create.json',
            data: {screen_name: 'userName',follow: true},
            dataType: 'jsonp',
            timeout: '5000',
            success: function(data) {
                alert(data);
            },
            error: function (xhr, ajaxOptions, thrownError) {
                    $('#fllw').append(""+xhr.status);
                    $('#fllw').append(""+thrownError);
                    $('#fllw').append(""+ajaxOptions);
                }
        });
    }
    </script>
</head>

<body>
<div id="myDiv">
</div>
<div id="fllw">

</div>
<input type="button" value="start" onclick="followFrd()"/>
</body>
</html>

在这种情况下我会超时。

我需要使用任何身份验证机制吗?如果是,请指导我如何使用它,因为我是 twitter api 的新手。

PS:我想使用 javaScript 或 jQuery。

4

1 回答 1

0

是的,您需要身份验证,尤其是使用 API v1.1。您可以使用现有库为您执行此操作,例如:https ://github.com/BoyCook/TwitterJSClient

于 2013-11-06T19:48:07.667 回答