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.

We use facebook connect and invite friends dialog for our company website. I can be able to send invitations to my facebook friends but when they click on the the invitation request on their notification list an error occured: "Sorry, the application you were using is misconfigured. Please try again later.".

Here is the javascript function which show the invite friends dialog and send invitations. I need to solve this problem quickly. Do i missing something? Thanks a lot!

function internalInviteFacebookFriends(opt_params) {
    FB.init({
        appId : opt_params.facebookAppKey,
        cookie : true,
        status : true,
        xfbml : true
    });
    FB.ui({
        method : 'apprequests',
        filters : [ 'app_non_users' ],
        message : 'Invite your friends to netmera platform'
    }, function(response) {
        if (response && response.request_ids) {
        }
        // TODO registerdan gelince autologin yap
        if (opt_params.login == "true") {
            var params = {};
            params.facebookID = opt_params.facebookID;

            internalLogin(params, null);
        }
    });
}
share|improve this question
What's your app settings? especially App on Facebook? – ifaour Oct 19 '11 at 19:51
I am not allowed to attach a screenshot of my facebook app settings. But i only choose website option, all opther settings are default. – Firat Eren Oct 21 '11 at 12:02
It sounds like your app is throwing an error processing the incoming request when the user lands on your app canvas, what do your logs say? – Igy Oct 21 '11 at 14:25
@Igy I don't think he has a Canvas App (he didn't set the canvas url) – ifaour Oct 22 '11 at 14:56
Yeah, seems that way - OP: requests will always send the user to your app's main canvas page - you need to configure one even if you're only processing the request and redirecting elsewhere – Igy Oct 22 '11 at 16:24
show 1 more comment

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.