3.6.1 • Published 2 years ago

jovo-analytics-onedash v3.6.1

Weekly downloads
47
License
Apache-2.0
Repository
-
Last release
2 years ago

OneDash Analytics Integration

Learn how to use OneDash Analytics for your Alexa Skills built with Jovo.

About OneDash

OneDash Website

OneDash is an AI-powered chat-bot analytics service with deep analysis of dialogues, search for insights and easy sharing with stakeholders.

Installation

To use OneDash for your voice app, you need to complete the following steps:

  1. Create a OneDash Bot
  2. Enable OneDash Analytics in your Jovo voice app
  3. Download the onedash npm package
  4. Test your app

Create a OneDash Bot

  1. Create a OneDash account or log in at https://app.onedash.cc/#/auth/login.

  2. Click "Add a Bot" in the Admin panel:

OneDash Add a Bot

  1. Copy API Key

OneDash Copy API Key

Enable OneDash in Jovo

To add OneDash to your voice app, do the following:

  • Download the npm package
  • Enable the plugin in app.js
  • Add configurations in config.js

First, download the npm package:

$ npm install --save jovo-analytics-onedash

Enable the plugin like this:

// @language=javascript

// src/app.js

const { OneDashAlexa } = require('jovo-analytics-onedash');

app.use(
    new OneDashAlexa()
);

// @language=typescript

// src/app.ts

import { OneDashAlexa } from 'jovo-analytics-onedash';

app.use(
    new OneDashAlexa()
);

Add configurations like this:

// @language=javascript

// src/config.js

module.exports = {
    
    analytics: {
        OneDashAlexa: {
            key: '<key>',
        },
    },

    // ...

};

// @language=typescript

// src/config.ts

const config = {
    
    analytics: {
        OneDashAlexa: {
            key: '<key>',
        },
    },

    // ...

};

Test OneDash

Test your voice app

OneDash Test

3.6.1

2 years ago

3.6.0

2 years ago

3.5.1

3 years ago

3.5.0

3 years ago

3.4.1

3 years ago

3.4.0

3 years ago

3.3.1

3 years ago

3.3.0

3 years ago

3.2.2

3 years ago

3.2.1

3 years ago

3.2.0

4 years ago

3.1.5

4 years ago

3.1.4

4 years ago

2.0.0

4 years ago

1.0.0

4 years ago