5

Windows 8 ストア アプリケーションがあり、それに Azure 認証を追加したいと考えています。MSDN ページの例に従いました。ただし、次の行で問題が発生しています。

MobileServiceUser loginResult = await App.MobileService.LoginAsync(result.Session.AuthenticationToken);

エラー: アプリに MobileService の定義が含まれていません。MobileService のインスタンスが App クラスに追加されるのはいつですか?

Microsoft.Live および Azure Mobile Services ライブラリへの参照を追加しました。認証機能全体は次のとおりです。

private async System.Threading.Tasks.Task Authenticate()
        {
        LiveAuthClient liveIdClient = new LiveAuthClient("<< INSERT REDIRECT DOMAIN HERE >>");


        while (session == null)
        {
            // Force a logout to make it easier to test with multiple Microsoft Accounts
            if (liveIdClient.CanLogout)
                liveIdClient.Logout();


            LiveLoginResult result = await liveIdClient.LoginAsync(new[] { "wl.basic" });
            if (result.Status == LiveConnectSessionStatus.Connected)
            {
                session = result.Session;
                LiveConnectClient client = new LiveConnectClient(result.Session);
                LiveOperationResult meResult = await client.GetAsync("me");
                MobileServiceUser loginResult = await App.MobileService.LoginAsync(result.Session.AuthenticationToken);

                string title = string.Format("Welcome {0}!", meResult.Result["first_name"]);
                var message = string.Format("You are now logged in - {0}", loginResult.UserId);
                var dialog = new MessageDialog(message, title);
                dialog.Commands.Add(new UICommand("OK"));
                await dialog.ShowAsync();
            }
            else
            {
                session = null;
                var dialog = new MessageDialog("You must log in.", "Login Required");
                dialog.Commands.Add(new UICommand("OK"));
                await dialog.ShowAsync();
            }
        }
    }
4

1 に答える 1

9

クラスを自分で追加する必要があります。

Azure Mobile Services の [はじめに] ページで、[Windows ストア] を選択し、次に [既存の WINDOWS STORE アプリに接続] を選択します (大声で言うつもりはありません。このように、ページでは文字どおりすべて大文字になっています)。

次のことを行うように指示されます。

「using Microsoft.WindowsAzure.MobileServices;」を追加し、次のコードをコピーして App.xaml.cs ファイルに貼り付けます。

public static MobileServiceClient MobileService = new MobileServiceClient(
    "https://[your website].azure-mobile.net/",
    "[your key]"
);
于 2013-06-17T04:31:18.277 に答える