Facebook 使用 Requests 2.0 进行多次邀请

发布于 2024-11-10 16:29:45 字数 122 浏览 1 评论 0原文

是否可以使用新的 Requests 2.0 发送多个邀请?截至目前的文档称“to”参数只能指定一个用户,因此即使无法设置默认过滤器,它也是单个用户或标准请求对话框! FBML 本质上很丑陋,但在目的上却很有效,这是一个巨大的缺点。

Is it possible to send multiple invites using new Requests 2.0? Documentation as of now saing that 'to' parameter can specify only one user, so it single user or standart request dialog even without possibility to set default filter! It's huge drawback from hidious by nature, but effective in purpose FBML.

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

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

发布评论

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

评论(3

把梦留给海 2024-11-17 16:29:45

当然。

查看文档Requests 2.0

发送给很多人

从您的应用程序前端,
执行:

FB.ui({method: 'apprequests', message: 'You should learn more about this awesome game.', data: 'tracking data: 'tracking information for the user'});

这将打开 facebook 对话框: 在此处输入图像描述

如果您的意思是在问题中是否可以过滤多个id's - 意思是,您选择要发送请求的 uid 列表而不是用户 - 那么答案是否定的,目前不可能。

Sure.

Look in the docs for Requests 2.0:

Send to Many

From your application front-end,
execute:

FB.ui({method: 'apprequests', message: 'You should learn more about this awesome game.', data: 'tracking data: 'tracking information for the user'});

This will open the facebook Dialog: enter image description here

If you meant in your question whether or not you can filter multiple id's - meaning, you choose the list of uid's to send the request to and not the user - then the answer is no, it's not possible currently.

柠檬色的秋千 2024-11-17 16:29:45

当然。

        FB.ui({
            method: 'apprequests', 
            message: 'text for the receiving user',
            data: '127', // to know what to do with it.
            title: 'title of window.'

        });  

请参阅此粉丝页面的示例:
http://www.facebook.com/NeonFashion?sk=app_176086155780033

或者我误解了你的问题和你实际在寻找类似的东西
Facebook 请求 2.0 过滤器

Of course.

        FB.ui({
            method: 'apprequests', 
            message: 'text for the receiving user',
            data: '127', // to know what to do with it.
            title: 'title of window.'

        });  

see this fanpage for an example:
http://www.facebook.com/NeonFashion?sk=app_176086155780033

or i missunderstand your questions and you actual looking for something like
Facebook requests 2.0 filter

亢潮 2024-11-17 16:29:45

通过在“收件人”字段中传递 id 数组,可以(现在?)同时打开针对多个用户的请求对话框。

请参阅 https://developers.facebook.com/docs/reference 中的“sendRequestToManyRecipients”示例/对话框/请求/

It is (now?) possible to open a request dialog targeting multiple users at once, by passing an array of ids in the "to" field.

See the "sendRequestToManyRecipients" example in https://developers.facebook.com/docs/reference/dialogs/requests/

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