Facebook 应用程序请求对于邀请用户而言并不具有吸引力 - 您的使用模式是什么?
使用 Facebook 应用程序请求对话框意味着我可以向用户发送邀请。通常此邀请会出现在 Facebook 页面顶部的通知菜单中。我会看到:
“Mike Hogan 在 FooApp 中向您发送了一个请求”,
这对用户来说根本没有吸引力。如果他们点击此通知,则会将他们带到 FooApp 的首页,而无需了解邀请的具体内容。通过这种方式,我的应用程序请求减少了大约 85%。可以理解。
如果用户单击查看所有应用程序请求,他们确实有机会看到请求的更多详细信息,但谁会这样做呢?
我收到了来自其他应用程序的请求,这些请求出现在我的顶部“通知”菜单中,并带有一个红色菱形,单击该请求后,会将我带到“应用程序请求”页面,而不是直接转到该应用程序。这使我可以看到请求的更多上下文,而不是在应用程序的首页中无知地抛出;-) 这可能会更好,但我不知道如何实现这一点 - 如何在应用程序请求中单击通知将发送至“应用程序请求”页面,而不是发送至 FooApp。
所以我想知道人们如何让应用程序请求为他们工作?
非常感谢任何和所有的想法!
谢谢, 麦克风
Using the Facebook app requests dialog means I can send an invite to a user. Usually this invite will appear in their notifications menu at the top of their Facebook page. And I will see:
"Mike Hogan sent you a request in FooApp"
Which is not at all compelling to a user. If they click on this notification, it takes them to the front page of FooApp, without much context of what the invite is. I'm experiencing about 85% tail-off of my App Requests done this way. Understandably.
Users do get a chance to see more detail of the request if they click to view all their App Requests, but who does that?
I have received requests from other apps that appear in my top Notifications menu, along with a red diamond, that when clicked on, take me to the App Requests page, instead of directly to the app. This allows me see more context of the request, instead of being hurled in ignorance at the app's front page ;-) This might work better, but I have no idea how to make that happen - how to make clicking on an app request in the notifications go the the App Requests page instead of to FooApp.
So I am wondering how people get App Requests to work for them?
Any and all ideas much appreciated!
Thanks,
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从此页面:https://developers.facebook.com/docs/requests/
“请求邀请(接收用户尚未安装应用程序)不会显示消息参数,并且在应用程序和游戏仪表板中进行不同的分类。”。
因此,尚未安装您的应用程序的人会收到一条不太吸引人的消息。在这种情况下,据我所知,最好的选择是按照 jBit 的建议进行操作,并在用户通过 URL 中的 request_id 登陆您的应用程序时显示尽可能多的上下文。
对于已安装该应用程序的用户,他们可以看到更详细的消息。
From this page: https://developers.facebook.com/docs/requests/
"Requests that are Invites (the recipient user has not installed the app) do not display the message parameter and are categorized differently in the Apps and Games Dashboard.".
So people who have not installed your app get a less inviting message. The best option in this case, as far as I can see, is to do what jBit recommended and display as much context as you can when a user lands on your app with a request_id in the url.
For users who have installed the app, they get to see the more detailed message.
为了让用户从“Mike Hogan 在 FooApp 中向您发送了一个请求” 到应用程序请求页面,我让我的应用程序使用变量
ref=notif
和检测 URL notif_t=app_request
,然后重定向到https://www.facebook.com/?sk=apps
。我还跟踪生成的请求 ID,并使用它们来引导用户找到相关内容。
但如果有人有更好的建议,我也想听听。
To get the users from the "Mike Hogan sent you a request in FooApp" to the App Request page I have my application detect urls with variables
ref=notif
andnotif_t=app_request
and then do a redirect tohttps://www.facebook.com/?sk=apps
.I also keep track of the generated request ids and I use them to guide the user to relevant content.
But if anybody has any better suggestions I would also like to hear them.