1

我无法使用 react-share 在 Twitter 上分享图片。我的代码是:

<TwitterShareButton 
     url={window.location.href} 
     title={props.data.breadcrumb}
     imageURL={props.data.product_info.image_path}
     children={<TwitterIcon size={32} round={true} />}
/>

正在从 api 加载图像。我已将 imageURL 更改为媒体,但它仍然无法正常工作。我可以分享图片吗?

4

1 回答 1

-1

似乎您可以将此响应中的 base64 url​​ 共享为https://github.com/react-native-community/react-native-share/issues/119,这非常酷且简单。

所以基本上设置了 url 道具:

url: "data:image/png;base64,<base64_data>"
于 2019-05-14T06:48:20.830 回答