1

私はウェブサイトに取り組んでおり、その一環として、ユーザーが友達を招待できるようにしています。次のコードを使用する

// assume we are already logged in
  FB.init({appId: 'xxxxxxxx49030', xfbml: true, cookie: true});
  function sendInvites(fb_ids) {
                var link_url = "<?php echo base_url()?>invited/?code=100627510332492694";
                FB.ui({
                    method: "send",
                    to: fb_ids,
                    name: "Join example.com",
                    description: "hello",
                    picture: "http://www.example.com/images/logo-orange.png",
                    link: link_url
                }, function(response) {
                    alert(response)
                    if (!response){

                        return;
                    }

                    $.post("/invite/new/", {
                        fb_ids: fb_ids
                    }, function(data) {
                        if (data.status == "success") {
                            alert(data.status);
                        } else {
                            alert(data.message);
                        }
                    }, "json");
                });
            }

何が欠けているのか理解できません。

4

1 に答える 1

0

Fbidsは配列である必要があり、私はそれを見逃しました。現在動作しています。

于 2013-10-25T09:37:47.170 に答える