<% if (!IsFaceBookConnected)
{%>
<script>
FB.init('APP_ID', '<%= Settings.RootUrl %>XdReceiver.aspx');
</script>
<%else{ %>
<div style="padding:0px;width:100%;">
<div id="fb-root">
<fb:serverfbml style="width:100%">
<script type="text/fbml">
<fb:fbml>
<fb:request-form
action="invite-friends"
method="post"
type="Invite"
content="">
<fb:multi-friend-selector max="25" showborder="false" actiontext="Invite Friends" email_invite="false" bypass="cancel" />
</fb:request-form>
</fb:fbml>
</script>
</fb:serverfbml>
<script type="text/javascript">
FB.init({
apiKey: 'XXXXX',
appId: 'XXXXX',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session<br/>
xfbml: true // parse XFBML
});
FB.getLoginStatus(handleSessionResponse);
function handleSessionResponse(response)
FB.XFBML.parse(); }
</script>
<%} %>
http://connect.facebook.net/en_US/all.js#appId=XXXXXXXX&xfbml=1
Facebookの友達をfbmlで招待したいです。しかし、それは Facebook の友達のリストを読み込んでいません。数日前に fbml を介して正常に動作しています。どうすればよいですか?