AppPotインスタンスを生成するクラスです。

Class Methods

getService(config) -> AppPot

AppPotインスタンスを取得します。
configが指定しない場合は、設定済みのAppPotインスタンスを返します。
設定済みの場合にconfigを指定すると、エラーを返却します。

引数:

Name Type Description
config Object 接続先の設定情報

configは、以下のようなオブジェクトを指定します。

key ValueType Description
url String AppPotサーバーにアクセスするためのURL
appId String 管理コンソール上で作成したアプリのID
appKey String 管理コンソールでアプリを作成した時に生成されたkey
appVersion String 管理コンソール上で作成したアプリのバージョン
companyId Number 作成したアプリが所属するテナントID

Return:

Type: AppPot

Example:

var window.AppPot = AppPotSDK.getService({
  url: 'http://example.com/apppot/',
  appId: 'apppot-test-app',
  appKey: '1234567890abcdef1234567890abcdef',
  appVersion: '1.0.0',
  companyId: 1,
  groupId: 1
});