Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on a website, as part of that we are allowing users to invite their friends. Using following code

// 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");
                });
            }

Don't understand what's missing.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.