nilto
v0.1.0
Published
JavaScript SDK Client for NILTO.
Downloads
2
Readme
nilto
Overview
JavaScript SDK Client for NILTO.
Installation
You can install this library using npm:
npm install nilto
Functions
getContents(params?: GetContentsParams): Promise<GetContentsResponse>
指定した条件に合うコンテンツの配列を取得します。
Parameters
| Parameter | Type | Description |
| --------- | ------------------- | -------------------------- |
| params
| GetContentsParams
| コンテンツの絞り込み条件。 |
Returns
| Type | Description |
| ------------------------------ | ------------------------------------------------------------------ |
| Promise<GetContentsResponse>
| コンテンツの配列および関連メタデータを含むレスポンスオブジェクト。 |
Usage Example
import { Nilto } from "nilto";
const nilto = new Nilto("your-api-key");
const params: GetContentsParams = {
model: "blog_articles",
limit: 10,
offset: 0,
};
const contentsResponse = await nilto.getContents(params);
console.log(contentsResponse.contents);
getContentsID(contentId: string): Promise<GetContentResponse>
指定した ID のコンテンツを取得します。
Parameters
| Parameter | Type | Description |
| ----------- | -------- | ------------------------- |
| contentId
| string
| 取得するコンテンツの ID。 |
Returns
| Type | Description |
| ----------------------------- | -------------------------------------------------------------------------------- |
| Promise<GetContentResponse>
| 指定されたコンテンツ ID に対応するコンテンツデータを含むレスポンスオブジェクト。 |
Usage Example
import { Nilto } from "nilto";
const nilto = new Nilto("your-api-key");
const contentId = "12345";
const contentResponse = await nilto.getContentsID(contentId);
console.log(contentResponse.content);
Link
License
This project is licensed under the MIT License - see the LICENSE file for details.