From 475ffecd938e0f16a385520533dea91b98a2bd90 Mon Sep 17 00:00:00 2001 From: siacomuzzi Date: Mon, 21 Jul 2014 10:57:01 -0300 Subject: [PATCH] minor --- docs/phonegap-plugin-tutorial.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/phonegap-plugin-tutorial.md b/docs/phonegap-plugin-tutorial.md index 0263d4a..966bb87 100644 --- a/docs/phonegap-plugin-tutorial.md +++ b/docs/phonegap-plugin-tutorial.md @@ -39,7 +39,7 @@ If you prefer using PhoneGap ### 2. Setting up the callback URL in Auth0
-

Go to the Application Settings section on Auth0 Admin app and make sure that App Callbacks URLs has the following value:

+

Go to the Application Settings section on Auth0 Admin app and make sure that App Callbacks URLs has the following value:

https://@@account.namespace@@/mobile
@@ -112,11 +112,9 @@ function (err, result) { The `Auth0User` has the following properties: * `profile`: returns a JSON object containing all available user attributes (e.g.: `user.profile.email`). -* `idToken`: is a Json Web Token (JWT) containing all of the user attributes and it is signed with your client secret. This is useful to call your APIs and flow the user identity (or Windows Azure Mobile Services, see below). +* `idToken`: is a Json Web Token (JWT) containing all of the user attributes and it is signed with your client secret. This is useful to call your APIs and flow the user identity. * `auth0AccessToken`: the `access_token` that can be used to access Auth0's API. You would use this for example to [link user accounts](link-accounts). -> If you want to use __Windows Azure Mobile Services__ (WAMS) you should create a WAMS app in Auth0 and set the Master Key that you can get on the Windows Azure portal. Then you have change your Windows Store App to use the client id and secret of the WAMS app just created and set the callback of the WAMS app to be `https://@@account.tenant@@.auth0.com/mobile`. Finally, you have to set the `MobileServiceAuthenticationToken` property of the `MobileServiceUser` with the `IdToken` property of `Auth0User`. - ## Download the sample Browse the sample on GitHub from [here](https://github.com/auth0/phonegap-auth0-sample).