Facebook Connect 在全屏模式下不带键盘
我们需要在以 Kiosk 模式在 Windows 中运行的触摸屏 Kiosk 上使用 facebook connect。信息亭上没有物理键盘。关于如何获得可用于将凭据传递给 Facebook 以便我们可以对用户进行身份验证的虚拟键盘,有什么想法吗? Facebook 似乎不允许支持在登录页面之外对用户进行身份验证。
We have a requirement to use facebook connect on a touch screen kiosk that's running in windows in Kiosk Mode. There is not a physical keyboard on the kiosk. Any ideas on how to get a virtual keyboard that can be used to pass credentials to facebook so that we can authenticate users? Facebook does not seem to allow support authenticating users outside of their login page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在Windows Form上找到了一个非常简单的解决方案。
SendKeys 类可以模拟键盘事件。
http://msdn.microsoft.com/query/dev10.query?appId= Dev10IDEF1&l=EN-US&k=k(SYSTEM.WINDOWS.FORMS.SENDKEYS.SEND);k(TargetFrameworkMoniker-%22.NETFRAMEWORK%2cVERSION%3dV4.0%22);k(DevLang-CSHARP)&rd =true
该设置是一个带有 WebBrowserControl 和一堆键盘按键按钮的表单。这是键盘按钮的事件处理程序。
I found a very simple solution on Windows Form.
The class SendKeys can simulate keyboard events.
http://msdn.microsoft.com/query/dev10.query?appId=Dev10IDEF1&l=EN-US&k=k(SYSTEM.WINDOWS.FORMS.SENDKEYS.SEND);k(TargetFrameworkMoniker-%22.NETFRAMEWORK%2cVERSION%3dV4.0%22);k(DevLang-CSHARP)&rd=true
The setup is a form with a WebBrowserControl and a bunch of buttons for the keyboard keys. Here's the event handler for a keyboard button.