1.1.3 • Published 5 years ago

@benjaming/react-native-share-instagram v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

react-native-share-instagram

Share your image with the Instagram app using Intents (iOS & Android)

Getting started

$ yarn add @micabe/react-native-share-instagram

Automatic installation

$ react-native link @micabe/react-native-share-instagram

Usage

import RNReactNativeSharingWinstagram from 'react-native-sharing-winstagram';

RNReactNativeSharingWinstagram.shareWithInstagram(this.state.fileName, this.state.base64EncodedImageString, message => {
  if (message) alert(message)
}, error => {
  alert(error.message) // error callback for IOs only
})

Troubleshouting

  • Make sure you have authorised in Info.plist your app to communicate with the Instagram app (iOS):
<key>LSApplicationQueriesSchemes</key>
<array>
  <string>instagram</string>
</array>

<key>NSPhotoLibraryUsageDescription</key>
<string>This app requires access to the photo library to share on Instagram.</string>

Advanced usage

Contribution

  • Test library to work with windows OS