用iframe方式在facebook中实现邀请功能


1。创建邀请页面 invite.jsp
  <fb:request-form
        action="XXX.do"
        method="get"
        invite="true"
        type="myApp"
        content='<fb:req-choice  url="http://apps.facebook.com/myApp/" label="welcome to be in My app" />'
      <fb:multi-friend-selector
        max="20"
        actiontext="Here are your friends who aren't using my app. Invite them to play my app today!"
        showborder="true"
        rows="4"
        exclude_ids="">
  </fb:request-form>

 参数说明:
  action : 邀请完成后,要返回的页面。 返回时侯的参数名称是”ids[]”,值是一个数组
  type : 应用的名称
  url : 你的应用访问地址
  label : 邀请框显示的文本
  actiontext : 受邀者看到的邀请文本
  rows : 每行显示几列
  exclude_ids : 要排除的UID列表

2.调用
  http://apps.facebook.com/myApp/invite.jsp?fb_force_mode=fbml

3.说明
  将"myApp"换成你的应用名称即可

你可能感兴趣的:(iframe,url,action,Facebook,fbml)