Jobeso / react-native-instagram-story-share

DEPRECATED: React Native Module for sharing to Instagram's storys
17 stars 7 forks source link

DEPRECATED! See react-native-story-share for story sharing

React Native Instagram Story Share

Installation

iOS

...
<key>LSApplicationQueriesSchemes</key>
<array>
    ...
    <string>instagram-stories</string>
</array>
...
platform :ios, '8.0'

target 'MyApp' do
  # use_frameworks!
    ...
    pod 'RNInstagramStoryShare', :path => '../node_modules/react-native-instagram-story-share/ios'
    ...
end

Android

Usage

import RNInstagramStoryShare from 'react-native-instagram-story-share'

RNInstagramStoryShare.share({
    backgroundImage: 'data:image/png;base64, ...',
    deeplinkUrl: 'https://github.com/',
})
.then(() => console.log('SUCCESS'))
.catch(e => console.log('ERROR', e))