twitter

Can i get age or date of birth of users using Twitter API?

我们两清 提交于 2021-02-08 07:41:13
问题 I'm working on a research and I need to get the age/date of birth of any user using Twitter API. Is it possible to do that? 回答1: Twitter doesn't store users' dates of birth so no, it's not possible. 来源: https://stackoverflow.com/questions/11348925/can-i-get-age-or-date-of-birth-of-users-using-twitter-api

Can i get age or date of birth of users using Twitter API?

橙三吉。 提交于 2021-02-08 07:40:09
问题 I'm working on a research and I need to get the age/date of birth of any user using Twitter API. Is it possible to do that? 回答1: Twitter doesn't store users' dates of birth so no, it's not possible. 来源: https://stackoverflow.com/questions/11348925/can-i-get-age-or-date-of-birth-of-users-using-twitter-api

Can i get age or date of birth of users using Twitter API?

筅森魡賤 提交于 2021-02-08 07:40:06
问题 I'm working on a research and I need to get the age/date of birth of any user using Twitter API. Is it possible to do that? 回答1: Twitter doesn't store users' dates of birth so no, it's not possible. 来源: https://stackoverflow.com/questions/11348925/can-i-get-age-or-date-of-birth-of-users-using-twitter-api

twython get_followers_list can only get 200 followers

懵懂的女人 提交于 2021-02-08 07:21:46
问题 Using Twython 3.1.0 trying to get followers of another user. followers = twitter.get_followers_list(screen_name=user, count=500) Even though user has 413 followers, I can only retrieve 200 of them. Then I tried using Twyton's cursor function: followers = twitter.get_followers_list(screen_name=user, count=500, cursor=10) It returns zero users: len(followers(['users'])) = 0 On the bright side, I looked at How to get twitter followers using Twython? and I was able to get all followers id's with

twython get_followers_list can only get 200 followers

≡放荡痞女 提交于 2021-02-08 07:14:41
问题 Using Twython 3.1.0 trying to get followers of another user. followers = twitter.get_followers_list(screen_name=user, count=500) Even though user has 413 followers, I can only retrieve 200 of them. Then I tried using Twyton's cursor function: followers = twitter.get_followers_list(screen_name=user, count=500, cursor=10) It returns zero users: len(followers(['users'])) = 0 On the bright side, I looked at How to get twitter followers using Twython? and I was able to get all followers id's with

twython get_followers_list can only get 200 followers

戏子无情 提交于 2021-02-08 07:13:07
问题 Using Twython 3.1.0 trying to get followers of another user. followers = twitter.get_followers_list(screen_name=user, count=500) Even though user has 413 followers, I can only retrieve 200 of them. Then I tried using Twyton's cursor function: followers = twitter.get_followers_list(screen_name=user, count=500, cursor=10) It returns zero users: len(followers(['users'])) = 0 On the bright side, I looked at How to get twitter followers using Twython? and I was able to get all followers id's with

twython get_followers_list can only get 200 followers

ⅰ亾dé卋堺 提交于 2021-02-08 07:09:16
问题 Using Twython 3.1.0 trying to get followers of another user. followers = twitter.get_followers_list(screen_name=user, count=500) Even though user has 413 followers, I can only retrieve 200 of them. Then I tried using Twyton's cursor function: followers = twitter.get_followers_list(screen_name=user, count=500, cursor=10) It returns zero users: len(followers(['users'])) = 0 On the bright side, I looked at How to get twitter followers using Twython? and I was able to get all followers id's with

Adding media_ids to Twitter API call causes authentication issue

核能气质少年 提交于 2021-02-08 06:55:20
问题 I have a simple web page which can create a text-only tweet through the Twitter REST API at https://api.twitter.com/1.1/statuses/update.json sucessfully. I am also able to upload a JPG image to Twitter with https://upload.twitter.com/1.1/media/upload.json and get back a numeric media_id successfully. What I cannot do is put these two together to create an image tweet: it gets HTTP status code 401 if I add in the media_id! I am using ASP.NET (I have both VB and C# examples) but I expect the

Not able to register webhook via postman in twitter app

非 Y 不嫁゛ 提交于 2021-02-07 09:00:32
问题 https://api.twitter.com/1.1/account_activity/all/prod/webhooks.json?url=https://test.com not working I have followed all steps to create a new application and getting consumer key, secret keys and also token details and try to create webhook via postman. I am getting follwing error { "errors": [ { "code": 32, "message": "Could not authenticate you." } ] } I have tried delete and get methods for webhook and it is working fine. 回答1: They probably goofed in their example. You just need to move

using since_id and max_id in Twitter API

我只是一个虾纸丫 提交于 2021-02-07 08:22:39
问题 I hope I'm overthinking this and there's an obvious solution. From the API (GET statuses/user_timeline) max_id - Returns results with an ID less than (that is, older than) or equal to the specified ID. "or equal to" means it will include the tweet with ID that I sent as my max_id parameter. -- My question is this: if I store the id of my oldest tweet (from a previous request), how can I subtract 1 from this id to exclude it from being returned in my next request? The obvious solution would be