get a list of posts by keyword using Facebook API[python] [closed] - facebook

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
Hello everybody.
I am using the Facebook SDK for Python,i want to know how can i get a list of posts by keyword using Facebook API?

https://developers.facebook.com/docs/public_feed/
Access to the Public Feed API is restricted to a limited set of media publishers and usage requires prior approval by Facebook. You cannot apply to use the API at this time.

Related

Uber API Integration-scopes [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I just created a developer account and my app on the Uber Developer Dashboard. For some reason, I can't set the scope for my tokens. It says I should contact Uber Business Development or Uber POC.
I tried using the scope in CURL, but it still doesn't let me get the profile of the user.

Cant get information of my friends - Facebook Graph API [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Im trying to get information of my friends, but just return of some friends, not all.
What is the problem?
In v2.0 of the Graph API is not possible to do that.
Check this answer.

Facebook does not send sms register as a developer [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I want to use facebook api and thats whay I have to get a access token . I try to 10 times 2 different phone but facebook doesnt send confirmation code. how can I fixed?
You can try contacting Facebook using this form here -https://www.facebook.com/help/contact/338822979524831
Also, do check if you entered a valid country code.

How to collect posts containing specific words from public Facebook users? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm trying to collect posts from public Facebook users that have a certain word such as, holiday, marriage, etc. What are the best tools and approaches to collect this data?
Use an implementation like this:
https://graph.facebook.com/search?q=Microsoft&type=post&fields=link,message&access_token=YOUR-API-ID|YOUR-APP-SECRET
It fetches results like you have requested. Make sure this call is going on at your server, so that your API ID or API Secret is not exposed.
P.S. If you do not have an app setup, visit Facebook Dev Page
Cheers.

facebook api fan page user list [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
is it possible to get list of uids of users who is fan of specific fan page with facebook api ?
I have not (yet) found a method to retrieve all the fans for a page without a key.
You can get a verification if a user is a fan, according to Facebook at least. In practice, use of the method still requires a key.
I'm actually looking for thesame thing, and from the looks of it, the answer is no. User list is not one of the properties you can read according to this page.