由3名研究人员组成的小组能否共享/共享Twitter API令牌,以加速/改进情绪分析项目的数据收集?

由3名研究人员组成的小组能否共享/共享Twitter API令牌,以加速/改进情绪分析项目的数据收集?,twitter,sentiment-analysis,sttwitterapi,twitterapi-python,Twitter,Sentiment Analysis,Sttwitterapi,Twitterapi Python,我们小组正在进行一项情绪分析研究项目。我们正在尝试使用Twitter API来收集推文。Out-Aimized数据集涉及大量查询词和过滤器。然而,由于我们每个人都有一个开发人员帐户,我们想知道是否可以使用API访问令牌来加速数据收集。例如,我们将制作一个应用程序,允许我们定义一个配置文件,其中包含一个访问令牌列表,该应用程序将尝试使用该列表搜索tweet。此应用程序将在本地计算机上运行。由于应用程序使用我们的个人访问令牌,我们相信我们实际上没有绕过或更改任何Twitter限制,因为每个访问令牌都

我们小组正在进行一项情绪分析研究项目。我们正在尝试使用Twitter API来收集推文。Out-Aimized数据集涉及大量查询词和过滤器。然而,由于我们每个人都有一个开发人员帐户,我们想知道是否可以使用API访问令牌来加速数据收集。例如,我们将制作一个应用程序,允许我们定义一个配置文件,其中包含一个访问令牌列表,该应用程序将尝试使用该列表搜索tweet。此应用程序将在本地计算机上运行。由于应用程序使用我们的个人访问令牌,我们相信我们实际上没有绕过或更改任何Twitter限制,因为每个访问令牌都保留了记录。该方法是否会产生任何法律/技术问题?谢谢大家!=D

下面是我们尝试执行的伪代码:

1. define a list of search terms such as 'apple', 'banana' 
and 'oranges' (we have 100 of these search terms, we are okay 
with the 100 limit per tweet)

2. define a list of frequent emotional adjectives such as 'happy', 'sad', 'crazy', etc. (we have have 100 of these) using TF-IDF

3. get the product of the search terms and emotional adjectives, 
in total we have 10,000 query terms and we have computed
 through the rate limit rules that we would need at least 
55 runs of 15-minute sessions with 180 tweets per 15-minute. 
 55 * 15 = 825 minutes or ~14 hours to collect this amount of tweets. 

4. we were thinking of improving the data collection by 
pooling access tokens so that we can trim down the time 
of collection from 14 hours to ~4 hours, e.g. by dividing the query items into subsets and letting a specific access token work on a subset  

We were pushing for this since we just think it's efficient if it's possible and permitted since why not and it might help future researches as well?
问题是,我们这样做是否真的违反了任何推特规则或政策?通过我们三人每人共享一个访问令牌,并创建一个我们称之为研究项目克隆的应用程序,我们相信,反过来,我们也失去了一些东西,这是我们完全控制的另一个应用程序的净空


到目前为止,我在推特上找不到关于这一点的具体规定。我们担心的是,我们将发表一篇论文,并将发布我们将编程和用于文档的应用程序以及我们计划构建的应用程序。免责声明:由于Twitter关于数据集的明确规定,只会发布应用程序的源代码,而不会发布数据集。

根据Twitter开发者政策和协议,这是绝对不允许的

Twitter开发者政策5a:

请勿执行以下任何操作: 对多个用例使用单个应用程序API键,或对同一用例使用多个应用程序API键

您可以通过直接查看Twitter。StackOverflow并不是这个问题的最佳选择,因为它不是一个专门的编码问题