Facebook Connect 在全屏模式下不带键盘

发布于 2024-10-31 05:06:02 字数 165 浏览 1 评论 0原文

我们需要在以 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 技术交流群。

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

发布评论

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

评论(1

聆听风音 2024-11-07 05:06:02

我在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 和一堆键盘按键按钮的表单。这是键盘按钮的事件处理程序。

private void buttonKey_Click(object sender, EventArgs e)
    {
        Control _sender = sender as Control;
        if (_sender != null)
        {
            //focus the webBrowser
            bool focusResult = false;
            do
            {
                focusResult = webBrowser1.Focus();
                if (!focusResult)
                {
                    Thread.Sleep(100);
                }
            } while (!focusResult);

            SendKeys.Send("{TAB}");
            SendKeys.Send("+{TAB}");
            SendKeys.Send("{RIGHT}");
            SendKeys.Send(_sender.Text);
        }
    }

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.

private void buttonKey_Click(object sender, EventArgs e)
    {
        Control _sender = sender as Control;
        if (_sender != null)
        {
            //focus the webBrowser
            bool focusResult = false;
            do
            {
                focusResult = webBrowser1.Focus();
                if (!focusResult)
                {
                    Thread.Sleep(100);
                }
            } while (!focusResult);

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