You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Minio Golang Client SDK provides simple APIs to access any Amazon S3 compatible object storage server.
1
+
# Minio Go Client SDK for Amazon S3 Compatible Cloud Storage [](https://gitter.im/Minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2
+
The Minio Go Client SDK provides simple APIs to access any Amazon S3 compatible object storage.
3
3
4
4
**Supported cloud storage providers:**
5
5
@@ -14,9 +14,9 @@ The Minio Golang Client SDK provides simple APIs to access any Amazon S3 compati
14
14
- Ceph Object Gateway
15
15
- Riak CS
16
16
17
-
This quickstart guide will show you how to install the Minio client SDK, connect to Minio, and provide a walkthrough of a simple file uploader. For a complete list of APIs and examples, please take a look at the [Golang Client API Reference](https://docs.minio.io/docs/golang-client-api-reference).
17
+
This quickstart guide will show you how to install the Minio client SDK, connect to Minio, and provide a walkthrough for a simple file uploader. For a complete list of APIs and examples, please take a look at the [Go Client API Reference](https://docs.minio.io/docs/golang-client-api-reference).
18
18
19
-
This document assumes that you have a working [Golang setup](https://docs.minio.io/docs/how-to-install-golang).
19
+
This document assumes that you have a working [Go development environment](https://docs.minio.io/docs/how-to-install-golang).
20
20
21
21
22
22
## Download from Github
@@ -28,8 +28,7 @@ go get -u github.com/minio/minio-go
28
28
```
29
29
## Initialize Minio Client
30
30
31
-
You need four items to connect to Minio object storage server.
32
-
31
+
Minio client requires the following four parameters specified to connect to an Amazon S3 compatible object storage.
33
32
34
33
35
34
| Parameter | Description|
@@ -68,7 +67,7 @@ func main() {
68
67
69
68
## Quick Start Example - File Uploader
70
69
71
-
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
70
+
This example program connects to an object storage server, creates a bucket and uploads a file to the bucket.
72
71
73
72
74
73
@@ -191,6 +190,13 @@ The full API Reference is available here.
0 commit comments