search image from google in react-native - react-native

I have a problem, need to search image from google using react-native api ?
p/s: I do not learn English well.
enter image description here

Related

React Native Posting Instagram Story with URL link under Username (Example: View in SoundCloud)

I'm working on a react native app using the react-native-share package to share an image to Instagram. I'm able to share the image to Instagram on iOS, but would like to display a url at the top left corner to tell others to view this post in our website.
It seems some apps can do this already like Spotify or Netflix or Soundcloud.
I've tried to use the package's Share.shareSingle method with the attributionURL: 'https://google.com', however, this doesn't display anything at the top.
Not found in the documentation either: https://developers.facebook.com/docs/instagram/sharing-to-stories/
Does anyone know how to implement this using the React Native package similar to the picture here: https://imgur.com/a/MEcthHd
And please provide documentation and a code example if possible, or how the link should be formatted. Thank you!

Api to find out if a photo is clicked from photo or of a real person

I am working on an app in flutter that requires me to verify if a photo is clicked from a "non living photo" or of a "live person". Is there a way to detect it from an api or some plugin by looking at its exif data or something. Actually I also welcome the idea of doing it.
Elaboration:
I am doing face recognition of a person to authenticate some thing but the photo is recognized even if the photo is clicked from a photo and I want to avoid this. By the way I am using azure for Face Recognization
Thanks
It is said spoofing detection in Facial Recognition or liveliness of the photo. More explanation here:
https://towardsdatascience.com/anti-spoofing-techniques-for-face-recognition-solutions-4257c5b1dfc9

React Native - google map image link that opens google maps app

In my React Native app, I need to generate a static google maps image with a dynamic address (like the image below). Once you press on the image, it needs to open up the google maps app to that same address. I looked at react-native-maps and it seems like overkill for what I want to achieve... Is there a way to embed a static google maps image in the app, put it inside a TouchableOpacity and just open google maps once you press on it?
You can use The Maps Static API to get the image
https://maps.googleapis.com/maps/api/staticmap?center=Brooklyn+Bridge,New+York,NY&zoom=13&size=600x300&maptype=roadmap
&markers=color:blue%7Clabel:S%7C40.702147,-74.015794&markers=color:green%7Clabel:G%7C40.711614,-74.012318
&markers=color:red%7Clabel:C%7C40.718217,-73.998284
&key=YOUR_API_KEY
and https://www.npmjs.com/package/react-native-open-maps to open the map app.
i hope you got your answer.

how to integrate google map using react-native-navigation

I want to show the current location with animation arrow and also place some dummy images(SVG images) on the map.
Please any one help for me.
There is a great library called react-native-maps where you can use google maps for both iOS and Android or use google maps for android and native apple maps for iOS.
Also this supports various animations and custom markers. You can use below link to find out uses of this library.
Link

Get img thumbnails from Yahoo! Screen Video Player (not older webplayer)

I am trying to get yahoo! screen video's image thumbs to embed on my website like we can easily do in other websites ( Get img thumbnails from Vimeo?, How do I get a YouTube video thumbnail from the YouTube API?, etc.).
There used to be a sugestion: Get thumbnail image for Yahoo video? (python) but it doesn't seem to work now with the new Yahoo! Screen.
Some quick searching on the Internets led me to Y!'s very own online help: http://help.yahoo.com/l/in/yahoo/video/using/using005.html;_ylt=Aj3rNfbhKBNyXODHGK5ONSo1qXtG
According to which, all I have to do is Copy the thumbnail code under the Share tab. Unfortunately, I can't seem to find any thumbnail code under the Share tab.
I also couldn't find any Y!Screen api on http://developer.yahoo.com/everything.html that could help me with this... ideas?
Using YQL for cross domain data scraping along with jQuery is the solution that works.
Some of it is sound, some of it is hackish, but that's what scraping is all about I suppose.
The basis for this method was not done by me, but by using a tutorial for Facebook titled
Create a Facebook-style Link Preview Using jQuery & YQL written by Jocelyn Stretton.
Included in the modified JavaScript which serves as a starting point, you will have access and understand how to retrieve the following:
1. Yahoo! Screen Video Webpage Title
2. Yahoo! Screen Thumbnail URL Link
3. Yahoo! Screen Video URL Link
4. Scrape Other meta Tag Content
5. Yahoo Screen Video Embed Code provided by the Yahoo Screen Player itself.
DEMO in jsFiddle!
EDIT: jsFiddle DEMO is no longer subdomain (regionally) dependent for video example.
EDIT 2: For those that would like to see another tutorial based on this .ajax() YQL process, I've made two jsFiddles for Pinterest Data Scraping. You can see that SO Answer here that discusses a lot more in detail for XPATH.