Skip to content

Loxone/cordova-plugin-amazon-login

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fork Notes (Preface)

This fork aims to simplify Amazon's AVS Authorization Mechanism.

The setup from the original plugin has also been greatly simplified by:

  • baking in both Android and iOS LWA libraries
  • updating the plugin config to include automatable steps
  • adding cordova hooks for copying API Keys at the prepare step

NOTE: The android APIs are targeted for cordova-android 7+

Cordova Plugin Login with Amazon

A Cordova Plugin for Login with Amazon. Use your Amazon account to authenticate with the app. This plugin is a wrapper around native android and iOS libraries developed by Amazon.

Prerequisites

  • Amazon API keys for both iOS and Android

  • Configuration file for Amazon API keys at the root of your project named amazon-login.config.json, which should have this format:

{
  "android": {
    "debug": {
      "api_key": "eyJhbGc...NHGGqug=="
    },
    "release": {
      "api_key": "eyJhbGc...DFthdeg=="
    }
  },
  "ios": {
    "api_key": "eyJhbGc...WyRg=="
  }
}

NOTE: By default, the value of API key from debug section will be used for Android. In order to use API key from release section

TARGET=release cordova prepare

Installation

cordova plugin add https://github.com/jospete/cordova-plugin-amazon-login.git#release/3.0.3

API

AuthorizeAVS

window.AmazonLogin.authorizeAVS(Object options, Function success, Function failure)

Success function returns an Object like:

{
	accessToken: "...",
	authorizationCode: "...",
	clientId: "...",
	redirectUri: "...",
	user: {
	    name: "Full Name",
            email: "[email protected]",
            user_id: "634565435",
            postal_code: '12345'
	}
}

Failure function returns an error String.

Resources

NOTE: API Key registration is defined at step 3 in each of the iOS and Android LWA Docs

About

Cordova plugin to use the Login with Amazon on Android

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 94.7%
  • Java 4.0%
  • JavaScript 1.3%