Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@brigad/react-native-instagram-story-share
Advanced tools
Share your images to instagram stories.
OS | Type | Supported |
---|---|---|
iOS | BASE64 | YES |
FILE | YES | |
Android | BASE64 | YES |
FILE | YES |
$ yarn add react-native-story-share
or
$ npm install react-native-story-share --save
Mostly automatic installation
or Manual installation
Integration
guide$ react-native link react-native-story-share
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-story-share
and add RNStoryShare.xcodeproj
libRNStoryShare.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)android/app/src/main/java/[...]/MainActivity.java
import com.jobeso.RNStorySharePackage;
to the imports at the top of the filenew RNStorySharePackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-story-share'
project(':react-native-story-share').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-story-share/android')
android/app/build.gradle
:
compile project(':react-native-story-share')
Build Settings
section Build Options
set Always Embed Swift Started Libraries
to true
library search paths
$(inherited)
$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)
instagram-stories
to the LSApplicationQueriesSchemes
key in your app's Info.plist....
<key>LSApplicationQueriesSchemes</key>
<array>
...
+ <string>instagram-stories</string>
</array>
...
import RNStoryShare from "react-native-story-share";
RNStoryShare.isInstagramAvailable()
.then(isAvailable => {
if(isAvailable){
RNStoryShare.shareToInstagram({
type: RNStoryShare.BASE64, // or RNStoryShare.FILE
attributionLink: 'https://myproject.com',
backgroundAsset: 'data:image/png;base64,iVBO...',
stickerAsset: 'data:image/png;base64,iVBO...',
backgroundBottomColor: '#f44162',
backgroundTopColor: '#f4a142'
});
}
})
.catch(e => console.log(e));
Name | Value |
---|---|
BASE64 | "base64" |
FILE | "file" |
isInstagramAvailable(): Promise<boolean>
Return a boolean indicating if Instagram is available on the phone.
shareToInstagram(config: ShareConfigObject): Promise<void>
type ShareConfigObject = {
type: "base64" || "file",
attributionLink: string,
backgroundAsset: string,
stickerAsset: string,
stickerOptions: {
height: integer,
width: integer
}
}
Shares a file or base64 image as background, sticker or both to Instagram. The background colors are only applyed when no background asset is set.
FAQs
share your images to instagram stories
The npm package @brigad/react-native-instagram-story-share receives a total of 3 weekly downloads. As such, @brigad/react-native-instagram-story-share popularity was classified as not popular.
We found that @brigad/react-native-instagram-story-share demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.