Does facebook API allow searches on profile, networks, employer, school info in the account?
Does facebook API allow searches on profile, networks, employer, school info in the account?
1.2k Views Asked by diya At
2
There are 2 best solutions below
0
mcnicholls
On
This part of the documentation details searching.
It states that:
You can search over all public objects in the social graph
as work and education details require extra permission to read, they aren't public objects and so can't be searched on.
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in FACEBOOK-GRAPH-API
- Facebook Post Images from local system on own Page
- How can I get posts from a facebook page using the graph API?
- Not getting all leads from Meta/Facebook using webhook for page leadgens
- Unsupported post request when trying to create a custom audience via the endpoint https://graph.facebook.com/lapi-version), (custom-audience-id/users)
- Page access token
- Facebook login via JS-SDK via OAuth will get stuck half-way
- Python - Facebook Check For Duplicate Post Before Posting
- Facebook Graph API - Story endpoint does not return all active stories
- Can't set permissions in Graph API Explorer tool
- My Authentication is not working in published mode
- Can I get my comment's reactions in FB Graph API Explorer
- Facebook GraphAPI: page subscribed_apps with subscribed_fields messages is not working
- Get Ad Account Billing Payment Transactions
- How to get a person’s username by his ID without a request to the graph?
- I am having trouble understanding the docs for Facebook Login SDK
Related Questions in RESTFB
- Why restfb library fails updating Facebook Page info?
- Why Facebook Page Address does not get updated Using Graph API v19.0?
- How to edit the photo of a Facebook post in Graph Facebook API?
- How to handle FacebookOAuthException in restFB and Java?
- How to dynamically use parameters in publish methode?
- Does restFB API support content_publishing_limit from Instagram Graph API?
- Can I access Facebook Ads archive using RestFB?
- facebook api upload video, it returns code 6000, subcode 1363048, try again makes no sense
- How do i search for type in restfb java?
- Interacting with Instagram accounts directly via FB graph API
- How to login in Facebook using mvn project with java
- posting to / reading from facebook page on behalf off server side facebook app (java & restfb)
- Read page messages
- How to get Batch Status from Facebook API using RestFB
- How can I identify the bug in my Java restfb call to post to my personal Facebook feed?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you can develop an app which can request user_education_history and user_work_history from the users and your users give permissions then you have the information you are looking for. Otherwise you can't get those info directly.
Usually when a user allows you to access their basic information in an auth dialog (of your app), you have access to their user id, name, profile picture, gender, age range, locale, networks, list of friends, and any other information they have made public.
You need to know more about permissions and how to ask for more permissions through Auth Dialogue and then decide yourself that whether facebook api allows it (to access user's education history, work history etc) or not.