Export Twitter followers - twitter

Is it possible to export twitter followers of a certain page ( with 40k followers) to an excel spreadsheet? I just need the username.. Bio, location, and website too, if possible.

Fetch twitter IDs of users from "followers-ids" api of Twitter.and then extract the details of all the followers through their twitter IDs with the help of "users-lookup" api of Twitter.

Related

How to get Tweets of users who i am following using Account Activity API?

Is there a way to get tweets of users who i am following using Account Activity API?
Or there is any way to get tweets of specific users?
Yes, absolutely! If your account is subscribed to the AA API then you should see Tweets mentioning you on the webhook. If you are interested in Tweets from specific users then use the timelines API.

Extraction Twitter user's Bio and collect user following

Does anyone know on how to extract Twitter user's bio and collect user following in twitter; Are there any tools for this?
if you want to get the description of the user, twetts, followers, etc, firts: you need create a twitter app, then you have to consume the REST SERVICE from twitter ... the official info: link. for this you can use (for example) php,java, c# or vb.net(etc) with OAUTH to consume data from twitter. You can review this topic to guide you a little So you want to use the Twitter v1.1 API? Greetings

iOS Facebook API fetch data from timeline using GRAPH API

We have a facebook account. That account 'Liked' 3 open facebook pages. When you login to that facebook account from your browser you can ofcourse see all the posts from those 3 pages on your news feed.
What I want to know is - can I somehow fetch all the data I see on my accounts news feed?
Im not asking how to do it, just is it possible.
I was doing some research, and on facebook.developers they do mention about nodes, which can be users or groups, but it is unclear to me are those groups that I made, so when I login to my mobile app i Actually login with that group account, or they meant that I can get data or other groups out there ?!
Facebook has documentation using FQL queries to GET the users news feed, take a look here
https://developers.facebook.com/docs/reference/fql
What you are looking for is called stream...

Is there any way to get the list of 'followers/'following' and 'messages' in my Twitter app in iOS?

I am building a demo Twitter app. I have fetched the search results and timeline tweets. Is there any way to get the list of people I am following and my followers? And, can my messages be fetched too?
https://dev.twitter.com/docs/api/1/get/users/lookup
https://dev.twitter.com/docs/api/1/get/users/show
https://dev.twitter.com/docs/api/1/get/friends/ids
https://dev.twitter.com/docs/api/1/get/followers/ids
Check this links to know the parameters to get the list of followers and know the REST API link for retrieve the friends and followers.

Twitter API - Getting friends and follower ids for a set of users?

I am able to extract tweets, and the submitter's user details using the streaming API, but I also need the list of followers and friends of users posting these tweets.
I am aware that Twitter search API has the friends/ids and followers/ids functions through which one can get the public followers and friends list one user at a time.
But, my data collection requires getting this information for all the users whose tweets I have collected, around 20,000+ users. This is quite exhaustive given the high number of users, and the limitation of one user per call. Moreover, I need to refresh this list for each of these 20,000+ users preferably once a day to observe changes in their friends and followers (if any).
IS there any I can achieve this using the Twitter Streaming API or any other method. Or I have to apply for the Twitter commercial data license?
Thanks!!!
20,000 is way beyond the limits of any normal Twitter API method. I think your going to have to apply for a commercial license to go that high. The streaming API, I believe, tracks 400 keywords and 5000 users max. Your right in that the REST twitter API method only allows you to track one user or a list of ID's. You can take a look at the Twitter Counter API which mines additional info including information about followers, etc. But again, 20,000 I'm sure would be above the limits. Communicate with Twitter, Gnip and, and the Twitter Counter service to see what they can do for you.
Twitter Counter API:
http://twittercounter.com/pages/api?ref=footer

Resources