我希望我的本机应用程序与Instagram共享照片。我知道用本机代码编写打开带有指定照片的Instagram过滤器屏幕是可能的。一个限制是我正在使用Expo SDK,它不允许'npm link'用于本机依赖项。
调用此函数时,它将打开Instagram:
_handlePress = () => {
Linking.openURL('instagram://app');
}
这是按钮:
<Button
onPress={this._handlePress}
title='Open Instagram'
/>
图像存储在以下状态:
state = {
image: null,
uploading: false
}
我可以在Image标签中显示图像:
<Image
source={{uri: image}}
style={{width: 300, height: 300}}
/>
但是,我无法将图像传递给Instagram。这是一些失败的研究: 第三方图书馆: react-native-instagram-share:https://www.instagram.com/developer/mobile-sharing/iphone-hooks/
因为我不能使用'link'来使用本机依赖项。我正在使用Expo SDK,它不允许“链接”用于本机依赖项。
Instagram文档解释了如何打开Instagram,并且传递图像可以使用本机代码完成。其中,是使用“UIDocumentInteractionController”,这在JavaScript中不可用 https://www.instagram.com/developer/mobile-sharing/iphone-hooks/
我的问题没有任何其他Stackoverflow答案。
答案 0 :(得分:11)
我将一个可以在iOS上运行的示例放在一起:https://snack.expo.io/rkbW-EG7-
以下完整代码:
import React, { Component } from 'react';
import { Linking, Button, View, StyleSheet } from 'react-native';
import { ImagePicker } from 'expo';
export default class App extends Component {
render() {
return (
<View style={styles.container}>
<Button title="Open camera roll" onPress={this._openCameraRoll} />
</View>
);
}
_openCameraRoll = async () => {
let image = await ImagePicker.launchImageLibraryAsync();
let { origURL } = image;
let encodedURL = encodeURIComponent(origURL);
let instagramURL = `instagram://library?AssetPath=${encodedURL}`;
Linking.openURL(instagramURL);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#ecf0f1',
},
});
这将让您打开相机胶卷并选择图像,然后打开Instagram应用程序并选择该图像。如果图像尚未在相机胶卷上,那么您可以使用图像上的CameraRoll.saveToCameraRoll
(link to React Native documentation)来获取图像。
此示例中使用的方法仅在您可以从相机胶卷共享时才有效,但我不确定如何在Android上执行此操作。我made an issue on Expo's feature request board确保Instagram共享功能开箱即用。
答案 1 :(得分:2)
这是您的发布方式
import { CameraRoll } from 'react-native'
callThisFunction = async () => {
await CameraRoll.saveToCameraRoll("https://images.unsplash.com/photo-1504807417934-b7fdec306bfd?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80", 'photo');
let instagramURL = `instagram://library?AssetPath=null`;
Linking.openURL(instagramURL);
}
答案 2 :(得分:0)
const downloadPath = FileSystem.cacheDirectory + 'fileName.jpg';
// 1 - download the file to a local cache directory
const { uri: localUrl } = await FileSystem.downloadAsync(remoteURL, downloadPath);
// 2 - share it from your local storage :)
Sharing.shareAsync(localUrl, {
mimeType: 'image/jpeg', // Android
dialogTitle: 'share-dialog title', // Android and Web
UTI: 'image/jpeg' // iOS
});
答案 3 :(得分:0)
为我工作:)
onClick = () => {
ImagePicker.launchImageLibrary(options, response =>{
console.log(response);
let instagramURL = `instagram://library?LocalIdentifier=`+response.origURL;
Linking.openURL(instagramURL);
})