Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/speakeasy-sdks/test-auth-sample-sdk

A go SDK for accessing the Swagger-Petstore API.
https://github.com/speakeasy-sdks/test-auth-sample-sdk

Last synced: 1 day ago
JSON representation

A go SDK for accessing the Swagger-Petstore API.

Awesome Lists containing this project

README

        

# github.com/speakeasy-sdks/test-auth-sample-sdk





## 🏗 **Welcome to your new SDK!** 🏗

It has been generated successfully based on your OpenAPI spec. However, it is not yet ready for production use. Here are some next steps:
- [ ] 🛠 Make your SDK feel handcrafted by [customizing it](https://www.speakeasyapi.dev/docs/customize-sdks)
- [ ] ♻️ Refine your SDK quickly by iterating locally with the [Speakeasy CLI](https://github.com/speakeasy-api/speakeasy)
- [ ] 🎁 Publish your SDK to package managers by [configuring automatic publishing](https://www.speakeasyapi.dev/docs/productionize-sdks/publish-sdks)
- [ ] ✨ When ready to productionize, delete this section from the README

# SDK Installation

```bash
go get github.com/speakeasy-sdks/test-auth-sample-sdk
```

## SDK Example Usage

```go
package main

import (
"context"
testauthsamplesdk "github.com/speakeasy-sdks/test-auth-sample-sdk"
"log"
)

func main() {
s := testauthsamplesdk.New()

ctx := context.Background()
res, err := s.Pets.CreatePets(ctx)
if err != nil {
log.Fatal(err)
}

if res.StatusCode == http.StatusOK {
// handle response
}
}

```

# Available Resources and Operations

## [Pets](docs/sdks/pets/README.md)

* [CreatePets](docs/sdks/pets/README.md#createpets) - Create a pet
* [ListPets](docs/sdks/pets/README.md#listpets) - List all pets
* [ShowPetByID](docs/sdks/pets/README.md#showpetbyid) - Info for a specific pet

# Error Handling

Handling errors in your SDK should largely match your expectations. All operations return a response object or an error, they will never return both. When specified by the OpenAPI spec document, the SDK will return the appropriate subclass.

# Server Selection

## Select Server by Index

You can override the default server globally using the `WithServerIndex` option when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:

| # | Server | Variables |
| - | ------ | --------- |
| 0 | `http://petstore.swagger.io/v1` | None |

For example:

```go
package main

import (
"context"
testauthsamplesdk "github.com/speakeasy-sdks/test-auth-sample-sdk"
"log"
)

func main() {
s := testauthsamplesdk.New(
testauthsamplesdk.WithServerIndex(0),
)

ctx := context.Background()
res, err := s.Pets.CreatePets(ctx)
if err != nil {
log.Fatal(err)
}

if res.StatusCode == http.StatusOK {
// handle response
}
}

```

## Override Server URL Per-Client

The default server can also be overridden globally using the `WithServerURL` option when initializing the SDK client instance. For example:

```go
package main

import (
"context"
testauthsamplesdk "github.com/speakeasy-sdks/test-auth-sample-sdk"
"log"
)

func main() {
s := testauthsamplesdk.New(
testauthsamplesdk.WithServerURL("http://petstore.swagger.io/v1"),
)

ctx := context.Background()
res, err := s.Pets.CreatePets(ctx)
if err != nil {
log.Fatal(err)
}

if res.StatusCode == http.StatusOK {
// handle response
}
}

```

# Custom HTTP Client

The Go SDK makes API calls that wrap an internal HTTP client. The requirements for the HTTP client are very simple. It must match this interface:

```go
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}
```

The built-in `net/http` client satisfies this interface and a default client based on the built-in is provided by default. To replace this default with a client of your own, you can implement this interface yourself or provide your own client configured as desired. Here's a simple example, which adds a client with a 30 second timeout.

```go
import (
"net/http"
"time"
"github.com/myorg/your-go-sdk"
)

var (
httpClient = &http.Client{Timeout: 30 * time.Second}
sdkClient = sdk.New(sdk.WithClient(httpClient))
)
```

This can be a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration.

# Development

## Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
looking for the latest version.

## Contributions

While we value open-source contributions to this SDK, this library is generated programmatically.
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)