diff --git a/articles/mobile-services-how-to-register-google-authentication.md b/articles/mobile-services-how-to-register-google-authentication.md index 2c3b165a5f7..850ef1f1ee3 100644 --- a/articles/mobile-services-how-to-register-google-authentication.md +++ b/articles/mobile-services-how-to-register-google-authentication.md @@ -24,6 +24,8 @@ This topic shows you how to register your apps to be able to use Google to authe ![][4] + >[WACOM.NOTE]For a .NET backend mobile service published to Windows Azure by using Visual Studio, the redirect URL is the URL of your mobile service appended with the path _signin-google_ your mobile service as a .NET service, such as https://todolist.azure-mobile.net/signin-google. + 6. Under **Client ID for web applications**, make a note of the values of **Client ID** and **Client secret**. ![][5] diff --git a/articles/mobile-services-how-to-register-twitter-authentication.md b/articles/mobile-services-how-to-register-twitter-authentication.md index a9fcc9669c4..3d117e8a9fd 100644 --- a/articles/mobile-services-how-to-register-twitter-authentication.md +++ b/articles/mobile-services-how-to-register-twitter-authentication.md @@ -16,9 +16,8 @@ This topic shows you how to register your apps to be able to use Twitter to auth ![][2] -
Note -

The Web Site value is required but is not used.

-
+ + >[WACOM.NOTE]For a .NET backend mobile service published to Windows Azure by using Visual Studio, the redirect URL is the URL of your mobile service appended with the path _signin-google_ your mobile service as a .NET service, such as https://todolist.azure-mobile.net/signin-twitter.
The Web Site value is required but is not used. 3. At the bottom the page, read and accept the terms, type the correct CAPTCHA words, and then click **Create your Twitter application**. diff --git a/includes/mobile-services-windows-dotnet-authenticate-app.md b/includes/mobile-services-windows-dotnet-authenticate-app.md index 9a0f6c5bad5..4ffa083a228 100644 --- a/includes/mobile-services-windows-dotnet-authenticate-app.md +++ b/includes/mobile-services-windows-dotnet-authenticate-app.md @@ -6,7 +6,7 @@ 6. Add the following code snippet to the MainPage class: private MobileServiceUser user; - private async System.Threading.Tasks.Task Authenticate() + private async System.Threading.Tasks.Task AuthenticateAsync() { while (user == null) { @@ -35,7 +35,7 @@ protected override async void OnNavigatedTo(NavigationEventArgs e) { - await Authenticate(); + await AuthenticateAsync(); RefreshTodoItems(); }