Retrieving followers list on fb using Graph Api - facebook-graph-api-v2.0

Can any explain how do I get the followers list of one of my fb friends. I'm using Graph API explorer and there is no field name for followers list. I have the ID of my friend and I can view the followers list on fb.

This is answer to your question - How To get Facebook Follower using Graph Api and Graph Secret?
So, now you can't receive user followers/subscribers.

Related

Instagram Followers Count Getting by API

I am Creating a Scenrio in my application
A user enter his instagram username system will show his Name, Followers Count etc. by instagram API.
I have tried Basic Display API for Instagram but this API is not addressing.
Follower count is not available using IG Basic Display API.
https://developers.facebook.com/docs/instagram-basic-display-api/reference/user
You can only receive follower count using Instagram Graph API, note that this only applies to IG Business or Creator Accounts
https://developers.facebook.com/docs/instagram-api/reference/ig-user

How I can retrieve all user activity from linkedin

I am trying to get user details like all posts and shares or user activities from linkedin, when I am trying get this method https://api.linkedin.com/v2/ugcPosts?q=authors&authors=List({encoded personUrn}) I am always getting below message I am using linkedin V2 API
{"serviceErrorCode":100,"message":"Not enough permissions to access: GET-authors /ugcPosts","status":403}
same thing happens for: https://api.linkedin.com/v2/socialActions/{personUrn}
LinkedIn Documentation Here: https://learn.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#retrieve-ugc-posts-by-authors

Get a list of pics a user likes on Instagram

is there a way to get a list (ideally XML or Json) of what pictures a specific user likes on Instagram?
I had a look at the Instagram APIs but there's nothing like this. This would be have the same informations I can see in the News => Following menu but not limited to few hours.
There is no public API for accessing other user's likes, you can only get logged-in user's likes using this endpoint: http://instagram.com/developer/endpoints/likes/

Is there any way I can retrieve twitter user's email Id (Objective-c)?

https://dev.twitter.com/docs/faq#6718
If twitter doesn't provide any API, then how does foursquare retrieve them?
Foursquare has provision to list out the user's foursquare-friends who have registered with twitter.
It also provides API which shows friends of users who commonly appear in 'foursquare friend's list' as well as 'twitter followers list' of the user.
In both the above cases comparison can be made only through email.
Please help.
There's no way for you to get an e-mail from Twitter. Except, of course, by asking the person to give it.
What FourSquare does need no access to the e-mail. Matching is based on the Twitter name, not on the e-mail.
In the comments you say
My friend has registered in both Twitter and Foursquare. The only field common in her profile is the email id. No other fields match. She comes in the 2nd list which i have mentioned above.
but then you admit
After she has registered with FourSquare, went to her profile, clicked on friends -> Add Friends -> opted Twitter. She was asked to login to Twitter and thus she did it
This means that now FourSquare have access to her Twitter as well as your. Foursquare knows her Twitter id and your twitter id and can access Twitter (using Twitter API) to see who is following is following who. In other words when you say
The only field common in her profile is the email id. No other fields match.
You are wrong. Once she connected her FourSquare profile with her Twitter, all data that is accessible via Twitter API is in fact (at least potentially) part of her Foursquare profile.
But she needed to explicitly connect the two profiles (which she did when she opted to add friends to her Foursquare profile using Twitter).

Question about twitter api

I want to create a simple Twitter application, but I have a problem. I want to show the user information about his followers, but this requires one API request to get a list of all user IDs following him, and then many additional API requests to get the user information corresponding to the user IDs that were just fetched. Is it possible to get user info for many followers in one request?
Use the Followers method:
http://api.twitter.com/1/statuses/followers.xml (Twitter API Documenation)
It returns detailed information about each follower.