I have been attempting to build a web site that is connected to Facebook. I have really been struggling with Facebook's API documentation and the examples on the web (including SO). It seems the API is constantly changing so most information available is no longer valid. Using a mixture of the Facebook C# SDK and the Facebook Javascript SDK I have been able to allow a user to log into Facebook, grant my web site offline_access (this is for the WPF client aspect of the system) permissions and pull basic friend information. I have hit a wall with creating a friend invitation control. I followed the Facebook documentation and produced what's bellow. I removed the unnecessary code to keep the post short.
<div id="fb-root">
<fb:serverFbml style="width: 755px;">
<script type="text/fbml">
<fb:fbml>
<fb:request-form method="POST" invite="true" type="My App Name"
content="You have been invited to xxxx. <%= Server.HtmlEncode(@"<fb:req-choice url=""http://apps.facebook.com/appname/"" label=""OK"" />") %>" >
<fb:multi-friend-selector showborder="false" actiontext="Invite your friends to use this application." />
<fb:request-form-submit />
</fb:request-form>
</fb:fbml>
</script>
</div>
<form id="MainForm" runat="server">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
</form>
<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
FB.init({
appId: 'xxxxx',
status: true,
cookie: true,
xfbml: true
});
</script>
I don't receive any errors but the code does not render the friend invite control. I checked it on the Java Script Test Console and it renders there. There is something obvious that I'm doing wrong so I would really appreciate some help on this. Please let me know if there is any other information needed before starting to flame me for writing a dumb question.