Get music listens using FQL [closed] - facebook-fql

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am trying to get music.listens for a user and a user's friends using FQL.
Does anyone know what is the FQL query for getting music.listens?
Thanks!

You cannot currently query for Open Graph actions using FQL
You need to use the Graph API. You'll need the user_actions.music and/or friends_actions.music permissions, then you'll be able to GET:
https://graph.facebook.com/UID/music.listens?access_token=TOKEN

it's possible to query via FQL in this style:
/fql?q=SELECT id FROM open_graph_action WHERE id = XXXXX
or:
fql?q=SELECT id, objects, tags, type, app_id, place, end_time, publish_time FROM open_graph_action WHERE id = XXXXX
That's all I know so far, no docs yet.

Related

Scrape images from wall photo album on facebook [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is it possible to scrape the pictures and titles of an album of a facebook group? Any ideas or know a good tutorial to get going with this?
It does not look like this is possible using the API.
You should be able to make a call to /GROUP_ID/albums to get the album_id in the Graph API explorer then make a call to /ALBUM_ID to get the photos.
Both of these calls to groups I admin result in OAuth Errors: "(#3) App must be on whitelist"
Whitelisting apps appears to only be possible by a Facebook employee.
You could try manually scraping the album URL as though you were a browser, but this is not supported and could get you and your group banned.

How to retrieve Facebook link share history through api? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
In my page, I have one Facebook "share" button to share the URL. Then after the URL shared and showed up in my friend's newsfeed, I don't know how many time the link got re-shared. Is there any API to read that re-share information?
Thanks.
You can use the FQL table link_stat to query for that data, something like:
SELECT
url, share_count
FROM
link_stat
WHERE
url="SHARED_URL"
Here's an example with the official south park page.
There are more stats that you can get from that table, so be sure to read the docs.

api - Get Facebook Post Data Using ID [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Everything is in the title. I've been looking for hours how to get a post data with his id. In php, javascript, fql or graph api, I do no care with which method. I would prefer in php, but i can adapt my work.
thanks in advance
Query https://graph.facebook.com/POST_ID with a valid access token.
Developer Documentation here:
developers.facebook.com/docs/graph-api/reference/v2.12/post

Facebook API for getting all the wall posts [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there any facebook API to get all the wall post of a particular user
or
a limited (say 10) number of wall posts
there is the Facebook Graph API for querying this data http://developers.facebook.com/docs/reference/api/ but I have no idea from your question what technology you want to integrate with

Search API, find RSS Feeds? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Im looking for a search api that will allow me to search for rss feeds.
It will either be a regular search feed that then returns the content type - allowing me to filter by rss items only, or a special rss-only index.
Does anyone know of any?
Take a look at Google AJAX Feed API. I was looking for feeds search for long, and evaluating Google's API now.