How to search similar images on facebook database? - facebook-graph-api

I have an image and I want to find similar images on facebook database and then trace the profile which the image represents. Note that the image I have is not on the facebook database and I am looking for similar images.

Related

Google Photos API: Identify "motion photos"

For media items that are "motion photos", the Google Photos API allows you to append "=dv" to the base URL of a media item to get the item as a "video/mp4". Without the =dv, the item comes back as a "image/jpeg". This works more or less as described in the docs.
What I can't figure out is how to tell whether or not a given item is a motion photo. The metadata returned for motion photos looks to be the same as for regular photos. Is there something I'm missing or do I need to try loading each photo as a video and handling the 404s?

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.

How to get higher quality images from eBay API

I am currently working in Django and getting some data from eBay API. The API gives me image URL, but the problem is that the quality of image is 70px, which is low.
Is there any method where I can get image of higher quality? I need images with minimum 200px. eBay has higher quality images (same image with high quality which they gives in their API).
I am using getTopSellingProducts call to retrieve them.
Does anyone have a solution for this problem?
Thanks in advance.
Sorry to break the bad news, but from eBay API getTopSellingProducts documentation:
Fully qualified URL for a stock image (if any) associated with the
eBay catalog product. The URL is for the image eBay usually displays
in product search results (usually 70px tall). It may be helpful
to calculate the dimensions of the photo programmatically before
displaying it. Only returned if a URL is available for the product.

accessing videos uploaded to a page via the Graph API

I need to fetch videos uploaded by users to a Facebook Page.
I'd have expected them to show up in https://graph.facebook.com/me/videos/uploaded, but it appears this only covers videos I've uploaded to my profile, not to a page.
The only place I can find that these show up is https://graph.facebook.com/PageName/tagged, but there they're crammed in amongst all the other stuff and I can't filter to find just the authenticated user's uploads to the page.
Is there a way to get only a specific user's video uploads / tags to a page?
OK, if we’re just talking videos posted to the wall here, I guess you could get that info querying the FQL stream table.
Filter it by:
source_id: The ID of the page whose wall the post is on
actor_id: The ID of the user that published the post
type: "128" - Video posted
Information about the video should be in the attachment column.

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.