Giter VIP home page Giter VIP logo

sethealth-go's Introduction

Sethealth Go client

Sethealth Go client allows to access the backend sethealth API from a server. The unique use case of this library today is to provide a authentication schema to delegate the "frontend" javascript library to communicate safely with the sethealth backend.

This is accomplish by the generation of a service account in sethealth. A service account is a long-living account for non-human users, like servers. Once a service account is created, a api key and a api secret are generated, this credentials MUST be kept private, never exposed in a client side application.

This "long-living" credentials can be used instead to create short-living credentials in the shape of access tokens in order to call the upload/download medical data from the client.

Install

go get -u github.com/sethealth/sethealth-go

Usage

Get your service account credentials from the Sethealth Dashboard.

.bashrc/.zshrc:

export SETHEALTH_KEY="0000000000000"
export SETHEALTH_SECRET="r_xxxxxxxxxxxxxxxxxxxxxxxxxxxx="

main.go:

package main

import (
    "github.com/sethealth/sethealth-go"
    "fmt"
)

func main() {
    // Create a new sethealth client with the service account credentials
    client := sethealth.New()

    // Ask for a short-living access token
    token, err := client.GetToken()
    fmt.Println("ACCESS TOKEN", token.Token)
}

Alternatively, the credentials can be provided programatically using the sethealth.NewWithCredentials():

package main

import (
    "github.com/sethealth/sethealth-go"
    "fmt"
)

func main() {
    // Create a new sethealth client with the service account credentials
    apiKey := "HERE THE API KEY"
    apiSecret := "HERE THE API SECRET"
    client := sethealth.NewWithCredentials(apiKey, apiSecret)

    // Ask for a short-living access token
    token, err := client.GetToken()
    fmt.Println("ACCESS TOKEN", token.Token)
}

Note: Credentials should be kept secret, it's not a good practice to hard code them in the source code.

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.