title | name | alias | language | framework | hybrid | image | tags | snippets | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Phonegap Tutorial |
Phonegap |
|
|
|
true |
/media/platforms/phonegap.png |
|
|
<%= include('../_includes/_package', { pkgRepo: 'auth0-cordova', pkgBranch: 'master', pkgPath: 'examples/phonegap-basic-sample', pkgFilePath: 'examples/phonegap-basic-sample/www/js', pkgType: 'js' }) %>
Otherwise, if you already have an existing application, please follow the steps below.
::: panel-info System Requirements This tutorial and seed project have been tested with the following:
- NodeJS 4.2
- Phonegap 5.5 :::
Go to the Application Settings section in the Auth0 dashboard and make sure that Allowed Callback URLs contains the following value:
https://${account.namespace}/mobile
Also, if you are testing your application locally, make sure to add your local URL as an Allowed Callback URL and the following as an Allowed Origin (CORS):
file://\*
You must install the InAppBrowser
plugin to be able to show the Login popup. For that, just run the following command:
${snippet(meta.snippets.dependencies)}
Note: If you're using Phonegap Build service, you need to add the plugin using the
<plugin name="cordova-plugin-inappbrowser" />
tag between the<widget>
tags inside your config.xml file. Please check this phonegap guide for more information
Now, you can just follow the tutorial for the FrontEnd technology that you're using. We currently support applications using jQuery, AngularJS and Vanilla JS.
Warning: Phonegap doesn't support getting dependencies from a CDN, so you're going to have to download the JS and CSS dependencies locally and then point to the downloaded files.
Warning: You must use
popup
mode when configuring an application with Phonegap. (All available guides currently do that by default)
Now it's time to sit back, relax and open a beer. You've implemented Login and Signup with Auth0 and Phonegap.
This means that the InAppBrowser
plugin wasn't installed successfully. Try any of the followings to fix this.
- Reinstall the
InAppBrowser
plugin
phonegap plugin remove cordova-plugin-inappbrowser
phonegap plugin add cordova-plugin-inappbrowser
- Remove the platform and re add it
iOS:
phonegap platform remove ios
phonegap platform add ios
Android:
phonegap platform remove android
phonegap platform add android
- Copy the contents from the plugin to the platform plugins
iOS:
cp plugins/cordova-plugin-inappbrowser/src/ios/* platforms/ios/[yourAppName]/Plugins/cordova-plugin-inappbrowser/
Android:
cp plugins/cordova-plugin-inappbrowser/src/android/* platforms/android/[yourAppName]/Plugins/cordova-plugin-inappbrowser/
This could mean that the InAppBrowser
plugin wasn't installed successfully.