我有这个代码(不是所有的代码),它基本上得到了20个最近的追随者。问题是,它会向我已经关注的人发出关注请求。这不是问题,但twitter限制了你可以发出的请求数量。followers = api.followers()tofollow = [x for x in followers if x not in following] try:
u.follow
我试图让我的推特追随者计数显示在我的网站上。我已经设置了twitter来接收追随者计数,并且已经使用echo进行了测试,并且运行得很好。<?php
* Requires the "TwitterAPI" wrapper by James Mallison
* to be found at https:/&
从我的应用程序中,用户可以使用to follow my twitter account。我想添加Followtwitter button in my app。当用户按下按钮时,让用户关注我的twitter帐户。在此之前,我没有使用任何twitterapi and twitter functionality,所以我很难做到这一点。你能帮我从应用程序本身关注另一个twitter用户账号吗?提前谢谢。