Before getting started, visit mytiki.com to apply for beta access to our platform. After registration, you will receive the providerId and publicKey used in this guide.


📘

For detailed installation, configuration, and integration of specific features head to the Guides section of the website.

Required

Make sure you have these parameters ready before proceeding with the installation guides.

  • providerId: Your business' unique mytiki.com identifier.
  • publicKey: The provider's public key.
  • companyName: The legal name of your business.
  • companyJurisdiction: The legal jurisdiction of your business.
  • tosUrl: A link to your current terms of service.
  • privacyUrl: A link to your current privacy policy.

Optional

These parameters are optional and just required if the application will use the e-mail receipt scrapping feature.

  • gmailApIKey: The API Key provided by Google for OAuth
  • outlookApiKey: The API Key provided by Microsoft for OAuth

Example

val config: Config = {
  providerId: "<PROVIDER-ID>", // Provided by TIKI
  publicKey: "<PUBLIC-KEY>", // Provided by TIKI
  companyName: "ACME Inc",
  companyJurisdiction: "Nashville, TN",
  tosUrl: "https://acme.inc/tos",
  privacyUrl: "https://acme.inc/privacy"
};

TikiClient.configuration(config)
let config = Config(
  providerId: "<PROVIDER-ID>", // Provided by TIKI
  publicKey: "<PUBLIC-KEY>", // Provided by TIKI
  companyName: "ACME Inc",
  companyJurisdiction: "Nashville, TN",
  tosUrl: "https://acme.inc/tos",
  privacyUrl: "https://acme.inc/privacy"
)

TikiClient.configuration(configuration: config)
const config: Config = {
  providerId: "<PROVIDER-ID>", // Provided by TIKI
  publicKey: "<PUBLIC-KEY>", // Provided by TIKI
  companyName: "ACME Inc",
  companyJurisdiction: "Nashville, TN",
  tosUrl: "https://acme.inc/tos",
  privacyUrl: "https://acme.inc/privacy"
};

Tikiclient.configuration(config)
import Vue from "vue";
import TikiPlugin from "@mytiki/publish-client-capacitor";

Vue.use(TikiPlugin, {
  providerId: "prov-id",
  publicKey: "pubkey",
  companyName: "ACME Inc",
  companyJurisdiction: "Nashville, TN",
  tosUrl: "https://acme.inc/tos",
  privacyUrl: "https://acme.inc/privacy"
})