Video sources are broken | Facebook graph api - facebook-graph-api

I got the source for Ad Video, but I found out some source (not all) are broken. The broken sources show a "gone" text on my browser and I am sure the video is still alive in my ad account.
What was the cause of the problem and How to solve it?
facebook graph api explorer tool
{
"id": "523693511726242",
"source": "https://video.ftpe7-4.fna.fbcdn.net/v/t39.24130-2/10000000_601583997150274_748629584611160856_n.mp4?_nc_cat=107&_nc_sid=985c63&efg=eyJ2ZW5jb2RlX3RhZyI6Im9lcF9oZCJ9&_nc_ohc=68WEvQXqpIIAX94To8x&_nc_ht=video.ftpe7-4.fna&oh=f83d0101e60ab8fba47a0aeadb3a4101&oe=5F91DF2C"
}

Related

graph api to get list of video uploaded on facebook via share dialogue

I need a list of videos uploaded via share dialogue by the user using my app. I can't see any app-specific data added to the video in graph API, however, uploaded videos on Facebook does have the tag of my app when they get added to the feed. I want to track videos uploaded by the user using my app's share dialogue. Can anyone point me in the right direction to achieve this?
This is not a supported feature by the Facebook API. So there is no way to get this done without help from the Facebook team.

Trying to get information user_friends, user_events, user_managed groups via Facebook Graph API but getting an error message

To start off, sorry, I'm pretty new at this!
I'm an assistant research coordinator at an university, and we've been using Facebook groups to conduct studies. I've been using a set of instructions created by my former colleagues (who have now left) on how to download my Facebook group data (such as comments and posts). It was working fine before, but today, when I was trying to download the information, it has not worked.
Instead, I get this:
{
"error":{
"message": "Unsupported get request. Object with ID '2016101665345495' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100,
"error_subcode": 33,
"fbtrace_id": "ASWzpxRukCz"
}
}
I suspect it is related to Facebook's new policy on April 4th: "Beginning April 4, 2018, all apps, including those formerly approved, must undergo App Review in order to retain or gain access to the Groups API. For apps currently using the API, review is required once App Review resumes or access will be removed."
I'm a little confused because we're not using an app so I don't understand what kind of permissions could be missing.
All the information you need can be found here: https://developers.facebook.com/blog/post/2018/04/04/facebook-api-platform-product-changes
Access to the Group API is not possible at all right now.
You should also take a look at this link: https://developers.facebook.com/docs/graph-api/changelog/breaking-changes#4-4-2018
Beginning April 4, 2018, all apps, including those formerly approved, must undergo App Review in order to gain access to the Events API, Groups API, and Pages API. Apps accessing the Events API and Groups API will lose access and require review once App Review resumes. For apps using Pages API, review will be required once App Review resumes or access will be removed.
https://developers.facebook.com/docs/apps/review

uploading audio file to facebook

In my app the user can record an audio file (say of their child's first word). Is there a way for them to post this on Facebook so that only the people they want to hear it can (privacy settings). I mean I don't think the user would want to post it on a sight where anyone and everyone could hear it and then link this their facebook page. I have looked around a lot and I see the possibility of Open Graph (which I use to upload a videos from my app) but since there is no direct upload to facebook of audio as I understand it. Each user would have to upload the audio to something like SoundCloud and then link this to Facebook. I'm not sure SoundCloud is the place for these types of recording. Does anyone have a better Idea.
Thanks a bunch.
You can upload the sound to SoundCloud and keep it private. You will then get a "secret link" to the file which you can post to your friends on Facebook.
Make a video with no video (black screen) and just audio, and upload it to facebook as video

Some posts not visible on the feed through Graph API

I'm working on an application that uses page's feed. Recently I've noticed that some posts from the feed are not visible through Graph API (and FQL, too), but are still visible on the regular page under "Recent posts by others".
Here's an example: http://www.facebook.com/permalink.php?story_fbid=539919279372939&id=77702235732 . If you open this URL, you should see the post, but Graph API explorer doesn't: http://developers.facebook.com/tools/explorer/?method=GET&path=77702235732_539919279372939 . What's going on? Is it a matter of some special privacy settings on the author's side, or is it Facebook's bug?

Unable to publish to facebook feed

I operate a website, http://www.plingo.com.br/
I have created a like button for that webpage, as well as specified opengraph tags that point back to the same URL and included a video.
I have set the og:type tag to 'blog'.
When someone clicks Like, the video and URL get posted to the users feed as expected.
However, my issue revolves around being able to publish to users of my feed.
As you can see in my opengraph tags, I have associated my URL to a facebook application that I own.
I have followed the instructions at developers.facebook.com/docs/opengraph/ on how to publish to my feed directly, however when I run the PHP script, I receive this error:
"error": {
"message": "(#100) (the url) does not resolve to a valid user ID",
"type": "OAuthException"
}
However, the opengraph at the URL points both to my facebook account as well as my application.
I have no idea why I am unable to do this.
However, to try to diagnose the issue, I made a similar webpage at http://www.plingo.com.br/ogtest.php and set all the attributes of the opengraph tags the same, except for the og:url and the youtube video. Running the publish script using that URL however, works fine, and facebook even generated an administrative page for publishing to facebook.
I am wondering why this is not working with my root URL. Is there any way to get Facebook to give me an Administrative Page? Why can't I publish, even though I have associated the opengraph IDs properly?
I would GREATLY appreciate any input as I have tried countless different things, changes, etc to see where the issue lies.
Thank you