无法从 MVC 上的 fb:request-form 帖子中获取返回的 uids

发布于 2024-11-08 00:41:35 字数 640 浏览 0 评论 0原文

我试图获取用户在 处选择的 uid,但总是返回 null 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。

I'm tring to get the uids that user selected at the but always back null the ids.

 <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>

After user invite, redirect to my action.

[HttpPost]
    public ActionResult Index(long[] ids)
    {
        return null;

    }

the ids always return null.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我要还你自由 2024-11-15 00:41:35

为什么在上帝的绿色地球上,你要以行动的形式传输你的秘密密钥?

为了回答你的问题,你必须设置invite=“true”来获取ID的AFAIR。但请注意,整个过程已经改变,并且使用 requests 2.0,但有非常严格的限制。请参阅 http://bugs.developers.facebook.net/show_bug.cgi?id= 17113了解详情。

编辑:修复错误 ID

why on gods green earth are you transmiting your secret key in the form action ?

And to answer your question, you have to set invite="true" to get the ID's AFAIR. But be warned, the whole process has changed, and is using requests 2.0 but with very strict limitations. see http://bugs.developers.facebook.net/show_bug.cgi?id=17113 for details.

EDIT: fixed wrong bug id

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文