我正在尝试获取用户在其中选择的 uid,但始终将 id 设为空。
<fb:request-form action="http://myapp/controller/index?id=<apid>&sk=<secret>"
method="POST" invite="false" type="Invite" content="<fb:req-choice url='http://myapp/controller/index?id=<apid>&sk=<secret>' label='invite' />">
<fb:multi-friend-selector showborder="false" bypass="cancel" cols=3 actiontext="Invite example"/>
</fb:request-form>
用户邀请后,重定向到我的操作。
[HttpPost]
public ActionResult Index(long[] ids)
{
return null;
}
id 总是返回 null。