1

我很难找到我需要的东西。简而言之:

如果我有一个站点,并且用户能够输入他们的推特句柄@user- 我如何动态拉回他们的推文?

Twitter 允许您制作自己的小部件,但它不是user调用,而是一个随机数1494028230983

谢谢

4

1 回答 1

1

如果我理解你的问题,那么我建议你使用Tweet jQuery 插件,它会根据给定的用户名从 twitter 中获取推文的数量。它真的很容易使用。

$(".tweet").tweet({
    username: username,
    join_text: "auto",
    avatar_size: 32,
    count: 5,
    auto_join_text_default: "we said,", 
    auto_join_text_ed: "we",
    auto_join_text_ing: "we were",
    auto_join_text_reply: "we replied to",
    auto_join_text_url: "we were checking out",
    loading_text: "loading tweets..."
);

您可以使用名称通过 css 应用样式class,例如

li{margin:5px 0;border:solid gray 1px;border-radius:2px;}
li.tweet_odd{ background:#eee;}
li.tweet_even{ background:#f0fff0;}
li a.tweet_avatar{float:left;margin-right:5px;}
li span.tweet_time a{text-decoration:none;color:green}
li span.tweet_text a{text-decoration:none;color:green}
li span.tweet_text{color:#333}​

有关更多信息,请查看插件站点。

这是一个例子

于 2012-11-12T16:12:13.937 回答