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