检索自己的Twitter帐户鸣叫墙自己的、帐户、Twitter

2023-09-09 21:04:00 作者:灰太狼,教我坚强好么

我想从我的Twitter帐户墙检索鸣叫。

I want to retrieve tweets from my twitter account wall.

从我自己的Twitter账户墙墙检索鸣叫后,我想显示在列表中的鸣叫。

After retrieving the tweets from wall of my own twitter account wall i want to show those tweets in a list.

显示在列表中是没有问题的。但我无法从我自己的Twitter账户墙检索鸣叫。谁能帮我?

Showing in a list is not a problem. But i am unable to retrieve tweets from my own twitter account wall. Can anyone help me?

推荐答案

一对夫妇有用的链接

https://dev.twitter.com/docs

https://dev.twitter.com/docs/using-search

您将使针对与根据您的需求参数API GET请求。

You would place a GET request against the API with parameters based on your needs.

第二页为您提供关于如何找到鸣叫特定的语法。

The second page gives you specific syntax on how to find tweets.

例如: http://search.twitter.com/search.json?q=%40twitterapi

此发现任何鸣叫提@twitterapi。从Q =取代它:twitterapi会找到@twitterapi的鸣叫。替换您的用户名,并且不要忘记带code中的URL字符串。

This finds any tweets mentioning @twitterapi. Replacing it with q=from:twitterapi would find any tweets from @twitterapi. Substitute your username, and don't forget to encode the URL string.