unemploymet analysis through social media - facebook

unemployment analysis through social media in big data concept.In my application i need to retrieve a information of person from Facebook. Like the status of particular person and his degree,studies and current job of the person including previous job if he is not fresher. so which way to get this information. please tell me..
Then my output is like graphical representation. so i have to highlight each degree in the graph. the major objective is to produce the unemployment report.

What you're trying to achive is IMHO no longer possible with the Graph API >= v2.0. You'd need to get the permission of every user to get the data you want. You should have a look at the permission concept Facebook has implemented for its Graph API and see for yourself:
https://developers.facebook.com/docs/facebook-login/overview/v2.2
https://developers.facebook.com/docs/facebook-login/permissions/v2.2
https://developers.facebook.com/docs/facebook-login/access-tokens

First you need to use the Facebook Graph API to retrieve the available data for each user.
https://developers.facebook.com/docs/graph-api
Then use a graphical library to draw what you want (but the question is a little too broad to go further).

Related

What choose Instagram Graph API or old API

I wonder if it is possible to use a new Instagram Graph API only for hobby purpose(small java application). The main aim is to process only user's data that is currently log in on instagram(not other's user data). Generally I'm a beginner on this field and I try to determine my chances for writing this kind of application, because I've read that sometimes it is hard to get permission to API from facebook, so maybe somebody know how it works in practice?
From what I can tell on the docs site, the Graph API is only used if you're making something for Business Accounts. The docs say that if making something for non-business users, to use the old API.
Reference here: https://developers.facebook.com/docs/instagram-api
I personaly suggest you to use new graph API, because older API support may be disabled in future and might be deprecated in future.
Moreover, Facebook does not give permission easily but you give proper & exact content if allows you and provide great support.

How to fetch particular users photos from Instagram

I am trying to fetch a particular user's photo using Instagram, lets say one particular sports team, I am unable to proceed further since the API's seem to return images of all users with similar handle? Is there a way around it?
Let me know please.
I am not sure what you're using, but the Instagram API absolutely provides an end-point for an individual user's photos.
Once you've obtained the user's ID you can use the /users/user-id/media/recent and /users/self/feed endpoints as required. What API calls are you currently using, if not those?

Is it possible to access insights data on a particular Open Graph story via one of the Facebook APIs?

Given an Open Graph story ID, is it possible to read insights Impression and Referral data on the story via any of the Facebook APIs?
A thorough review of the API documentation suggests it's not (but FB's API docs can get out of date) and previous SO questions have not been promising (but none of the answers seem definitive and anyway times change). Something like the following seems like a reasonable guess for where they might be available:
https://graph.facebook.com/[og_story_id]/insights
Testing queries along those lines does not error, but also hasn't turned up any real data.
As a addendum and potential hack, is it possible to access the comment or like count for an Open Graph story?
It is not possible to update the existing isight using the endpoint the only it allow only the get request post and put is not allowed for this end point

can i use the facebook data for my data mining project

First i will tell what i want to achieve in my data mining project and then i will ask questions.
I am thinking of using the facebook to find particular user from particular location and from particular community. Then based upon their daily wall posting and likes , dislikes i want to generate a report on what user of particular community are doing or interested in.
Is that legal , i mean can i use my crawler to grab those users public data.
Read the Facebook Terms of Service.
That is what they are for, they tell you what you are allowed to do on their site and what not.
Most likely you are not allowed to access the web site with spiders, and the Facebook API will restrict your data gathering capabilities with rate control etc. except for users that are running your application (or you pay for the data...)

Facebook application data storage

I created a Facebook app(game) in JavaScript. I used Facebook's php-sdk. I dint make a good use of the sdk except to display the name of the user logged, and his details.
I want to store the score of each user at some place. Checked FQL. As far as I saw, it doesnt allow you to store data, there was only SELECT query available. So is there any way in which we can append the score to user information or something similar.
In short can we store the data on Facebook
OR
We should use our own database server only to store the data.
In general you need to store your own data. While it might be possible to fake it by using some attribute of a user, it's certainly not the way it's designed to work and you can't count on the data always being available. You are better off setting up your own database and use the users' FB IDs to tie the info together.
Facebook now supports posting scores via scores api found here.
You can also publish achievements relevant to the game as in here
These have enough guidance to help you out !