Giter Club home page Giter Club logo

go-mcs-sdk's Introduction

go-mcs-sdk

Made by FilSwan Chat on discord

Table of Contents

Introduction

A Golang software development kit for the Multi-Chain Storage (MCS) Service . It provides a convenient interface for working with the MCS API.

Functions:

Data Structures:

Constants:

Prerequisites

Usage

Download SDK

go get github.com/filswan/go-mcs-sdk

Call SDK

  1. Login using apikey/accessToken
import (
	"github.com/filswan/go-mcs-sdk/mcs/api/user"
)

mcsClient, err := user.LoginByApikeyV2(apikey, network)
// apikey: your apikey
// network: (MCS mainnet: mainnet, MCS testnet: testnet . Default is the main network.)

// mcsClient: result including the information to access the other API(s)
// err: when err generated while accessing this api, the error info will store in err
  1. Call bucket related api(s)
  • Step 1️⃣ Change McsClient to BucketClient
import (
	"github.com/filswan/go-mcs-sdk/mcs/api/bucket"
)
bucketClient := bucket.GetBucketClient(*mcsClient)
  • Step 2️⃣ Create a bucket
bucketUid, err := buketClient.CreateBucket([BUCKET_NAME])
// bucketUid: the new created bucket UID
// err: when err generated while accessing this api, the error info will store in err
  • Step 3️⃣ Upload a file to the bucket
// err := buketClient.UploadFile([BUCKET_NAME], [YOUR_FILE_NAME], [YOUR_FILE_PATH], true)
// err: when err generated while accessing this api, the error info will store in err

Documentation

For more examples please see the SDK documentation

MCS API

For more information about the API usage, check out the MCS API documentation (https://docs.filswan.com/development-resource/mcp-api).

Contributing

Feel free to join in and discuss. Suggestions are welcome! Open an issue or Join the Discord!

Sponsors

This project is sponsored by Filecoin Foundation

Flink SDK - A data provider offers Chainlink Oracle service for Filecoin Network

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.