0

私はここに見られる基本的な例を試しています: Facebook4 プラグイン

facebookConnectPlugin.showDialog({
    method: "send",
    caption: "Check this out.",
    link: "http://example.com",
    description: "The site I told you about",
    picture: "http://example.com/image.png"
}, function(result) {
    // Success!
    $timeout(function () {
        $ionicLoading.hide();
    });
    console.log("success", result);
}, function(err) {
    // An error occured. Show a message to the user
    $timeout(function () {
        $ionicLoading.hide();
    });
    console.log("error - ", err);
});

そして、私はこのエラーメッセージを受け取ります:

Cannot show dialog

何が起こっているのか本当にわかりません...そして、何の進展もなく長い間探しています。助けはありますか?

リンクされているとは思いませんが、ログイン時に要求される権限は

["public_profile", "email", "user_birthday"]

ありがとう !

4

0 に答える 0