Birds eye view of how to place video's into Facebook timelines - facebook-graph-api

We're trying to have users share 'articles' on a simple website into their timelines. Each article is associated with a video and we would like to use that video in the representation of the article in a users timeline. Now, I've read that linking to an mp4 via open graph meta tags isn't possible anymore. So I presume I should be using the graph api.
Could someone confirm that this is true?
And if so can you give a quick run down of the necessary steps achieve this?
Thanks

Related

How can I use Google's Vision API on images in my own website

I am very new to Google's API and machine learning in general. I want to use the Vision API labeling ability for a student project I am working on.
I would like to create a website that works similarly to the demo of the API on google's product page. I would like to be able to click on images in the website and see the labels that vision creates. If possible, I would like to use a pre-trained model like the advertising material. Additionally, if possible, I would like to be able to sort the images based on their labels in the website's interface. I attached an image of what the demo on the product page produces for reference (the image is a digital render that I created). I want to see how well the API can classify artificially created images.
I have looked through a lot of the documentation but I am not really sure where to start with all this. I also found this on github, but I am not sure how to utilize something like this for my own images. Can anyone give me some pointers?
You can send image bytes, a path to a file in GCS or a path to a public image: https://cloud.google.com/vision/docs/reference/rpc/google.cloud.vision.v1#image
It sounds like you are interested in sending the image bytes.

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.

Sharing large pictures with a facebook application

How do I share a big picture from an application?
We have an application with a trivia quiz, but we can only share small pictures.
Is it possible to share a picture at the original size?
here is the link for testing the apps:
https://www.facebook.com/LeChampionDeBlueExorcistCommunity?sk=app_374441249291232
Use Open Graph to share stories with (large) user generated action photos.
The documentation is here: https://developers.facebook.com/docs/opengraph/usergeneratedphotos/
Something like this will work, in conjunction with an Open Graph action post.
https://graph.facebook.com/me/yournamespace:cook?
recipe=http://www.yourdomain.com/pizza.html&
image[0][url]=http://www.yourdomain.com/images/my_camera_pizza_pic.jpg&
image[0][user_generated]=true
You can also post a photo to a user's albums using the https://developers.facebook.com/docs/reference/api/photo/ API
Which you choose to use partly depends on the use case you have in mind.

Adding link to your facebook app in photo post message

Can anyone tell me how this facebook application was able to make 'MemeGen' a link in this post? I have a photo upload application, and everything works great, but I can't figure out how to stick a link like this in the posts.
This is the markup that they managed to get into the message.
MemeGen
Thanks for any help!
That is obviously not a normal photo upload, but an Open Graph action, which publishes a user generated image – https://developers.facebook.com/docs/opengraph/actions/#usergenerated
(And at that, it is in violation of the rules, because actions are only supposed to post real photos that the user publishing the action took at that very moment with his camera – and I doubt that this particular image with text on it qualifies as such.)

Using the Facebook Graph API for posting a customized image on user's facebook wall

In my Facebook app the user can assemble a couple of small images to a larger image. Is it at all possible to post this image to the user's wall without posting it as a photo?
As far as I can see, the alternative would be to post a link to a web page that contains the og:image meta tag but this appears to be quite cumbersome since I'm dealing with a customized image.
Is there any another way to post the image to the wall?
Tried with the picture property on the post object which worked. For some reason it didn't work when I tried it some weeks back.