react-native-fbsdk共享对话框不显示用于选择受众的下拉列表

时间:2018-09-26 12:43:11

标签: facebook react-native react-native-fbsdk

我正在使用native-fbsdk shareDialog在Facebook上共享链接,如下面的代码所示:

预期的行为:“共享”对话框使我能够发布到我的时间轴,朋友的时间轴,组,

实际行为:“共享”对话框使我能够将仅发布到我的时间轴,他用于选择不出现受众的下拉列表。 >

其他反馈:我正在使用真正的android设备

本机版本“ 0.55.4”

react-native-fbsdk版本“ 0.8.0”

如何使用下拉列表选择受众群体

谢谢

import React, {Component} from 'react';
import { View, Button } from 'react-native';
import { LoginButton, ShareDialog } from 'react-native-fbsdk';

const shareLinkContent = {
  contentType: 'link',
  contentUrl: "https://www.google.com/",
  contentDescription: 'Wow, check out this great site!',
};


function test (){
  ShareDialog.show(shareLinkContent);
}

export default class App extends Component {
  render() {
    return (
      <View>
        <LoginButton/>
        <Button title="test" onPress={test}/>
      </View>
    );
  }
}

0 个答案:

没有答案