How to get list of all public videos from facebook - facebook

I want to get video ids of all public facebook videos, Is there any way to do this may be from graph api?

https://developers.facebook.com/docs/graph-api/using-graph-api/v2.2#search
You can only search for Users, Pages, Events, .... but the Public Post Search is deprecated so you canĀ“t get public videos.

Related

Need to create Facebook events feed from public page

I'm trying to get an events feed from a Public Facebook page, but can't get it working.
I've an app with "Page Public Content Access" permission.
I try {page-id}/events and {page-id}/feed without luck. In the first case I get an empty data array, in the second one I get all posts but no events.
You simply cannot get events from public pages anymore (this had been changed after Cambridge Analytica).

Query public posts / feeds from facebook

I am building an app in which user will enter some words.
I need to get data about these words from facebook public feeds / public posts .
After getting data, i will display post / feed permanent_uri in my app.
i have read out following link but i do not know where to start. From whom i need to contact and on which platform.
https://developers.facebook.com/docs/public_feed/
i also read out link Facebook public feed API
In which one person answers that fb restricts this now.
Can i get public posts / feeds from facebook ?

How to get top global public posts with most number of likes from facebook using fql

I want to get top global public posts from facebook with most number of likes using fql, is there anyway to do it?
I am able to get the posts for a specific page and actor.
SELECT message, likes.count, attachment FROM stream WHERE
source_id='SOURCE_ID' AND actor_id= 'ACTOR_ID'
but is there anyway like using queries like max(likes)
Short Answer: No
FQL is deprecated
Public Post Search is deprecated
Public Feed API is restricted to a limited set of media publishers and you cannot apply (at least not right now)
Links:
https://developers.facebook.com/docs/apps/changelog
https://developers.facebook.com/docs/public_feed

Retrieving public videos through Graph API

We are using the Facebook Graph API to search for Public Posts as per the following query:-
"https://graph.facebook.com/search?q=" sSearchText
We have found that this query is currently returning only public posts related to status updates. It is not returning posts which contain videos. Could you kindly let us know as to how we can retrieve the same?
You need to use FQL as opposed to the Graph API. Details on how to query Facebook for video objects can be found at the link below:
https://developers.facebook.com/docs/reference/fql/video
See this existing question for more details: Facebook Graph API and videos

Search video through Facebook Open Graph API

I know we can search for public objects such as post, event, checkin in Open Graph API using:
https://graph.facebook.com/search?q=QUERY&type=OBJECT_TYPE
However I can not search for video objects.
Is there a way to search for videos in facebook using their title or description?
You can search videos using some attributes via FQL: http://developers.facebook.com/docs/reference/fql/video.
Unfortunately, the title and description are not among those...