Git Product home page Git Product logo

aftership-sdk-go's People

Contributors

acln0 avatar beaelf avatar bossa573 avatar neocn avatar panxl6 avatar qizhanchan avatar steveyuowo avatar vimukthi-git avatar xiaojian-hong avatar yuriynasretdinov avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

aftership-sdk-go's Issues

bug: fails to process error responses.

Currently, the API client fails to process an error response from the create tracking endpoint.

Steps to reproduce:

package main

import (
	"context"
	"fmt"
	"time"

	"github.com/aftership/aftership-sdk-go/v2"
)

func main() {
	unauthorizedTracker, err := aftership.NewClient(aftership.Config{APIKey: "UNAUTHORIZED"})
	if err != nil {
		panic(err)
	}

	_, err = unauthorizedTracker.CreateTracking(context.Background(),
		aftership.CreateTrackingParams{Slug: []string{"total-express"}, TrackingNumber: time.Now().String()})

	fmt.Println(err)
}

Expected behaviour

The function call should return an error of type APIError that contains the error code and error message ("unauthorized").

Actual behaviour

Returns the unstructured error:

error unmarshalling the JSON response: json: cannot unmarshal array into Go struct field Tracking.data.tracking.slug of type string

As far as I understand, the problem arises from line 78 in requests.go file, where we try to unmarshal the response. The expected response has field Tracking.Slug of type string, while the received type is a slice of strings.

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.