GithubHelp home page GithubHelp logo

go-xee's Introduction

Build Status Software License GoDoc Coverage Status

Xee Go SDK

This is an unofficial SDK for Xee.

Getting started

package main

import (
    "github.com/laibulle/go-xee"
    "net/http"
    "io"
    "fmt"
)

var (
    sdk *xee.SDK
)

// Handle home and redirect Xee Login
func xeeCallback(w http.ResponseWriter, r *http.Request) {
    code := r.URL.Query().Get("code")

    // Get a token from auth code
    token, err := sdk.GetTokenFromCode(code)
    checkError(err)
    io.WriteString(w, fmt.Sprint(token))

    // Fetch user from Xee
    user, err := sdk.GetMe(token.AccessToken)
    checkError(err)
    io.WriteString(w, fmt.Sprint(user))

    // Fetch User cars
    cars, err := sdk.FindCars(user.ID, token.AccessToken)
    checkError(err)
    io.WriteString(w, fmt.Sprint(cars))

    // Fetch Car Status
    status, err := sdk.FindCarStatus(cars[0].ID, token.AccessToken)
    checkError(err)
    io.WriteString(w, fmt.Sprint(status))

    // Fetch Car locations
    locations, err := sdk.FindLocations(cars[0].ID, token.AccessToken, nil, nil, nil)
    checkError(err)
    io.WriteString(w, fmt.Sprint(locations))
}

// Handle authorization code
func home(w http.ResponseWriter, r *http.Request) {
    url := sdk.GetAuthURI("1")
    http.Redirect(w, r, url, http.StatusFound)
}

func checkError(err error) {
    if err != nil {
        panic(err)
    }
}

func main() {
    // Create a SDK instance
    sdk = xee.NewSDK("myclient", "mysecret", "http://127.0.0.1:8000/xee-callback")

    http.HandleFunc("/", home)
    http.HandleFunc("/xee-callback", xeeCallback)
    http.ListenAndServe(":8000", nil)
}

go-xee's People

Contributors

laibulle avatar rlespinasse avatar sebastienfr avatar

Watchers

 avatar

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.