New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vikadata/vika-fusion-sdk

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vikadata/vika-fusion-sdk

Vika FusionAPI SDK in Pure JavaScript

  • 1.0.8
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

Vika Fusion SDK - JavaScript

VikadataFusionApi - JavaScript client for Vika Fusion API 维格表融合开放 API 文档,帮助你基于强大的维格表数据库快速构建应用

Install

yarn add @vikadata/vika-fusion-sdk
npm install @vikdata/vika-fusion-sdk

Usage

import { create } from '@vikadata/vika-fusion-sdk';
const fusionApi = create();

...

Github:

https://github.com/vikadata/vika-fusion-sdk-typescript-axios

NPM:

https://www.npmjs.com/package/@vikadata/vika-fusion-sdk

Getting Started

Please follow the installation instruction and execute the following JS code:

var VikadataFusionApi = require('vikadata_fusion_api');

var api = new VikadataFusionApi.DefaultApi()
var spaceId = "spaceId_example"; // {String} 空间 ID
var datasheetId = "datasheetId_example"; // {String} 维格表 ID
var token = "token_example"; // {String} 鉴权 token,暂时可以直接从浏览器控制台中复制你的 cookie 填入

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.fusionControllerGetPack(spaceId, datasheetId, token, callback);

Documentation for API Endpoints

All URIs are relative to /

ClassMethodHTTP requestDescription
VikadataFusionApi.DefaultApifusionControllerGetPackGET /fusion/v1/datasheet
VikadataFusionApi.DefaultApifusionControllerGetViewGET /fusion/v1/view
VikadataFusionApi.DefaultApifusionControllerHelloGET /fusion/v1/hello
VikadataFusionApi.DefaultApirecordsControllerAddRecordPUT /fusion/v1/records
VikadataFusionApi.DefaultApirecordsControllerGetRecordGET /fusion/v1/records
VikadataFusionApi.DefaultApirecordsControllerSetRecordPOST /fusion/v1/records

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.

FAQs

Package last updated on 17 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc