https://github.com/loginradius/phonegap-sdk
The LoginRadius PhoneGap library will let you integrate LoginRadius' customer identity platform with your PhoneGap mobile application(s).
https://github.com/loginradius/phonegap-sdk
loginradius loginradius-sdk phonegap-sdk social-login
Last synced: 8 months ago
JSON representation
The LoginRadius PhoneGap library will let you integrate LoginRadius' customer identity platform with your PhoneGap mobile application(s).
- Host: GitHub
- URL: https://github.com/loginradius/phonegap-sdk
- Owner: LoginRadius
- Created: 2015-06-12T19:00:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2023-04-07T01:29:15.000Z (about 3 years ago)
- Last Synced: 2024-12-27T01:42:46.414Z (over 1 year ago)
- Topics: loginradius, loginradius-sdk, phonegap-sdk, social-login
- Language: JavaScript
- Homepage: https://www.loginradius.com
- Size: 56.6 MB
- Stars: 0
- Watchers: 7
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# LoginRadius PhoneGap SDK

## Introduction ##
LoginRadius is an Identity Management Platform that simplifies user registration while securing data. LoginRadius Platform simplifies and secures your user registration process, increases conversion with Social Login that combines 30 major social platforms, and offers a full solution with Traditional Customer Registration. You can gather a wealth of user profile data from Social Login or Traditional Customer Registration.
LoginRadius centralizes it all in one place, making it easy to manage and access. Easily integrate LoginRadius with all of your third-party applications, like MailChimp, Google Analytics, Livefyre and many more, making it easy to utilize the data you are capturing.
LoginRadius helps businesses boost user engagement on their web/mobile platform, manage online identities, utilize social media for marketing, capture accurate consumer data, and get unique social insight into their customer base.
Please visit [here](http://www.loginradius.com/) for more information.
###### Before using demo project,you must install PhoneGap environment in your system Please visit [here](http://docs.phonegap.com/getting-started/1-install-phonegap/desktop/) for complete PhoneGap installation.
#### There are two projects in the library:
a. Demo
b. LoginRadiusPhoneGapSDK -This is the LoginRadius SDK
##### Demo
1.Put the value according to your requirement in index.html
#### Index.html
```ruby
var commonOptions = {};
commonOptions.apiKey = "";
commonOptions.appName = "";
commonOptions.hashTemplate = true;
commonOptions.accessTokenResponse = true;
commonOptions.phoneLogin = false;
commonOptions.sott = "";
commonOptions.verificationUrl = "https://auth.lrcontent.com/mobile/verification/index.html";
commonOptions.callbackUrl = 'DemoApp://';
commonOptions.isMobile = true;
commonOptions.debugMode= false;
commonOptions.formValidationMessage = true;
var LRObject = new LoginRadiusV2(commonOptions);
```