2-met-dev-sdk 中文文档教程

发布于 3年前 浏览 21 项目主页 更新于 3年前

2-met-dev-SDK

此 SDK 允许为您组织内的指标创建新事件。

Installation

使用包管理器 npm 安装 2-met-dev-SDK。

npm install 2-met-dev-SDK

Usage

const SDK = require("2-met-dev-sdk");

const sdkInstance = new sdk("API-KEY");

const createNewEvent = async () => {
  const response = await sdkInstance.createEvent("metricId", "value");
  return response;
};

要使用此 SDK,您必须执行以下步骤:

  • Import the SDK using the name '2-met-dev-sdk'
  • Create an instance passing as parameter the API-KEY of your organization
  • Create a new event using the method 'createEvent()' which recieves first the metric ID and second the new value. This method is asynchronous, so it has to be inside an async/await function. The response will be ok if the value was added successfully, error if there was a problem, or timeout.

2-met-dev-SDK

This SDK allows to create a new event for a metric within your organization.

Installation

Use the package manager npm to install 2-met-dev-SDK.

npm install 2-met-dev-SDK

Usage

const SDK = require("2-met-dev-sdk");

const sdkInstance = new sdk("API-KEY");

const createNewEvent = async () => {
  const response = await sdkInstance.createEvent("metricId", "value");
  return response;
};

In order to use this SDK, you have to follow this steps:

  • Import the SDK using the name '2-met-dev-sdk'
  • Create an instance passing as parameter the API-KEY of your organization
  • Create a new event using the method 'createEvent()' which recieves first the metric ID and second the new value. This method is asynchronous, so it has to be inside an async/await function. The response will be ok if the value was added successfully, error if there was a problem, or timeout.
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文