Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get Facebook integration to work within my site. I can authenticate and retrieve friends just fine. When I run my site using "http://localhost:52812/" I can get Facebook apprequests, feed, and send dialogs working. However, when I add an IIS mapping for "www.someclient.com" to point to the exact same site as "http://localhost:52812/" then none of the dialogs work. I can still login and can still retrieve a list of friends.

Here's my FB code:

    FB.init({ appId:invitationData.AppId, cookie:true,  status:true, xfbml:false });

FB.ui(
{
    method: 'send',
    name: invitationData.Title,
    link: 'http://www.nytimes.com/2011/06/15/arts/people-argue-just-to-win-scholars-assert.html',
    redirect_uri: invitationData.RedirectUri,
    to: invitationData.ToUserId,
    description: 'Using Dialogs to interact with users.'
});

FB.ui(
{
    method: 'feed',
    to: invitationData.ToUserId,
    redirect_uri: invitationData.RedirectUri,
    link: 'https://developers.facebook.com/docs/reference/dialogs/',
    picture: 'http://fbrell.com/f8.jpg',
    name: 'Facebook Dialogs',
    caption: 'Reference Documentation',
    description: 'Using Dialogs to interact with users.'
});

FB.ui(
{ 
    method: 'apprequests', 
    message: invitationData.Message,
    to: invitationData.ToUserId,
    title: invitationData.Title,
    redirect_uri: invitationData.RedirectUri
});

I'm only using one of these at a time. When I use "www.someclient.com" the fb code seems to be ignored. There's no error messages.

Thanks

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.