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

}

asked 19 Oct '11, 13:57

Firat%20Eren's gravatar image

Firat Eren
111
accept rate: 0%

@Firat Eren, all meta.osqa.net postings are required to have a clear, specific question in their title field. Please correct the title of this posting right away. Thanks.

(19 Oct '11, 18:25) rickross ♦♦
Be the first one to answer this question!
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×40

Asked: 19 Oct '11, 13:57

Seen: 335 times

Last updated: 19 Oct '11, 18:25

powered by OSQA