gpt4 book ai didi

c# - 使用 Azure 移动服务进行身份验证

转载 作者:行者123 更新时间:2023-12-03 04:32:18 24 4
gpt4 key购买 nike

我为 Windows 10 构建了一个通用应用程序。在我的应用程序中,我使用 Azure 移动服务进行身份验证(Facebook、Google 等)。

// Define a member variable for storing the signed-in user. 
private MobileServiceUser user;

// Define a method that performs the authentication process
// using a Facebook sign-in.
private async System.Threading.Tasks.Task<bool> AuthenticateAsync()
{
string message;
bool success = false;
try
{
// Change 'MobileService' to the name of your MobileServiceClient instance.
// Sign-in using Facebook authentication.
user = await App.MobileService
.LoginAsync(MobileServiceAuthenticationProvider.Facebook);
message =
string.Format("You are now signed in - {0}", user.UserId);

success = true;
}
catch (InvalidOperationException)
{
message = "You must log in. Login Required";
}

var dialog = new MessageDialog(message);
dialog.Commands.Add(new UICommand("OK"));
await dialog.ShowAsync();
return success;
}

我的登录窗口出现问题。在低分辨率下我得到这个窗口。

Login window in low resolution (screenshot).

但是在高分辨率下,我得到了这个窗口。

Login window in high resolution (screenshot).

如何缩放此网页以适应不同的分辨率?也许我可以访问 webview?

提前致谢。

最佳答案

据我所知,您无法访问 WebView ,因为它是操作系统级别的,但是大网页仍然可以访问..

关于c# - 使用 Azure 移动服务进行身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34989939/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com