Appcelerator Titanium:获取推文的授权

发布于 2024-10-31 23:21:22 字数 197 浏览 0 评论 0原文

有谁知道当您必须获得授权时如何获取推文?我可以发布推文,这是由 oAuth 适配器完成的,但这没有 GET 方法(只有 SEND)。

我正在尝试在 user_timeline 中使用 count 参数。当我只使用 SCREEN_NAME 参数时不需要,但当我使用 COUNT 参数时它需要身份验证。

谁能帮我解决这个问题吗?

谢谢!

Does anyone know how to get tweets when you have to be authorized? I am able to post tweets, which is done by the oAuth Adaptor, but this doesn't have a GET method (only SEND).

I am trying to use the count parameter in the user_timeline. It doesn't require when i only use the SCREEN_NAME parameter, but when i use the COUNT parameter it needs authentication.

Can anyone help me with this?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九命猫 2024-11-07 23:21:22

我找到了这个。这不是我的代码,但也许有帮助。谢谢@kosso([电子邮件受保护]

function getTweets(screen_name){

    // create table view data object
    var data = [];

    var xhr = Ti.Network.createHTTPClient();
    xhr.timeout = 1000000;  
    xhr.open("GET","http://api.twitter.com/1/statuses/user_timeline.json?screen_name="+screen_name);

    xhr.onload = function()
    {
        try
        {
            var tweets = eval('('+this.responseText+')');

            for (var c=0;c<tweets.length;c++){

                var tweet = tweets[c].text;             
                var user = tweets[c].user.screen_name;
                var avatar = tweets[c].user.profile_image_url;
                var created_at = prettyDate(strtotime(tweets[c].created_at));

            }

        }
        catch(E){
            alert(E);
        }
    };
    // Get the data
    xhr.send(); 

i found this. it's not my code, but maybe it helps. thanks @kosso ([email protected])

function getTweets(screen_name){

    // create table view data object
    var data = [];

    var xhr = Ti.Network.createHTTPClient();
    xhr.timeout = 1000000;  
    xhr.open("GET","http://api.twitter.com/1/statuses/user_timeline.json?screen_name="+screen_name);

    xhr.onload = function()
    {
        try
        {
            var tweets = eval('('+this.responseText+')');

            for (var c=0;c<tweets.length;c++){

                var tweet = tweets[c].text;             
                var user = tweets[c].user.screen_name;
                var avatar = tweets[c].user.profile_image_url;
                var created_at = prettyDate(strtotime(tweets[c].created_at));

            }

        }
        catch(E){
            alert(E);
        }
    };
    // Get the data
    xhr.send(); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文