can I show Instagram's business account's media in a react native app? - react-native

I want to show my own business instagram account's photos in a react native app, user dont need to sign-in to watch those images. I only want to fetch a few images and show them in a list, if the user clicks on them he will be redirected to the insta app. If anybody know how to fetch images please tell in detail. I have tried facebooks documentations but they are difficult to follow.

Related

Shopify app that can use and save camera data

I would like to build a Shopify app that can take pictures of the customer using the selfie camera, save them to a customer profile, and allow for guest checkout. I know this is partly possible because this app - https://www.esenca.app is able to achieve the camera functionality component.
Regarding the fine details, how would I create a Shopify app that can do this?
First you create a mobile App using your Flutter or React Native library (or whatever turns your mobile phone crank) with camera access. Ensure your App can take a picture and store it.
Second you would implement the Shopify oAuth pattern into your App, asking for customer permissions, so the merchant could choose to install this App in their store.
Third you would code up an extension in your App that displays this picture in the Customer account section of the App.
Fourth, clean up all the loose ends and profit from your adventure!

What is Instagram deep link in React Native for iOS and Android

I need to open the Instagram Direct Message from React Native app and send a text to a selected contact after opening in Instagram.
I already found the way to open Whatsapp and send a message to selected contact using:
Linking.openURL('whatsapp://send?text='+text);
Also I found this for Instagram which is not working:
Linking.openURL('instagram://library?OpenInEditor=1&LocalIdentifier=${identifier}');
Does anyone know how to do that? (I know there are some sharing tools but I don't need to use them)

Can we authenticate facebook user which view page in UIWebView?

I work on application which provide bonus content for certain actions Facebook Share, Facebook Like of our page and etc.
I have problem with Facebook Like, as we know Facebook SDK ToS don't allow us (developers) to programmatically like Facebook page, so I have two ideas
Open the native Facebook APP, which is straight forward.
UIWebView within' our APP. But here is the problem
How to authenticate the user in facebook, to skip the inconvenience of double login. (The first time is within' our app, to be able to fetch the result of /me/likes/(id))?
I also faced the same problem for liking pages
i found this
https://github.com/brow/FacebookLikeView it is very help full go through this it shows how to like face book pages by using web view
hope this helps

Adding company logo to newsfeed sharing links

I have a native iOS & Blackberry App. You can create personalized videos.
When people share their video clip on Facebook, I would like the company logo and the accompanying link to go through to our website (not FB App page).
Instagram, Blackberry and Twitter all do this.
For e.g. when someone uploads an Instagram photo - it has the Instagram logo, with link to their website underneath the upload.
Do you know how I can do this? Any help would be greatly appreciated.
Thanks
First your Facebook app will need to request manage_feed permissions from the user. Once you have manage_feed, you can http POST the posting using the Graph API to put the stream item into their feed. See https://developers.facebook.com/docs/reference/api/post/ for further info.

How to integrate facebook fan page within an iphone app?

I want to integrate facebook fan page in my game with out leaving the game. And I also want to detect If any one like that app, I mean I want to detect "like" button pressed or not.I view this tutorial http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app But there is only instruction to add the like button,but o detection if any one tapped the button or not.
Any one help me please.Sample code or tutorial may help a lot.
Thanks in advance.
Tamanna
The Facebook API on iOS is meant to redirect the user on the Facebook app (or website when the app is missing) in order to grant access for the like itself. This needs to be done at least once.
In order to gather information about who is liking what you can set up whatever log or backend functionality to the Facebook app that you have to create to activate the like functionality on your iOS app.