| commit | c12ea1cd9ca9fc80d03f056ff6d1dea3eb41630c | [log] [tgz] |
|---|---|---|
| author | Glenn Lewis <gmlewis@google.com> | Fri Nov 13 15:05:10 2015 -0800 |
| committer | Glenn Lewis <gmlewis@google.com> | Mon Nov 16 04:32:48 2015 +0000 |
| tree | 6c95aef888fad6e23533e55ef3d4420c210491ee | |
| parent | e4bb4e4880a5cabeec41cbff1095e86059f2f908 [diff] |
google-api-go-client: update all APIs and remove old ones
The following APIs have been removed:
container:v1beta1
pubsub:v1beta1
Note that the small change in google-api-go-generator/gen.go
will be addressed with unit tests in
https://code-review.googlesource.com/#/c/3732/
Change-Id: Ic978e4b2ba125e46d00c856b511a7a752dc0400d
Reviewed-on: https://code-review.googlesource.com/3756
Reviewed-by: Michael McGreevy <mcgreevy@golang.org>
These are auto-generated Go libraries from the Google Discovery Service's JSON description files of the available “new style” Google APIs.
Due to the auto-generated nature of this collection of libraries, complete APIs or specific versions can appear or go away without notice. As a result, you should always locally vendor any API(s) that your code relies upon.
Announcement email:
Getting started documentation:
In summary:
$ go get google.golang.org/api/storage/v1 $ go get google.golang.org/api/tasks/v1 $ go get google.golang.org/api/moderator/v1 ... etc ...
For docs, see e.g.:
The package of a given import is the second-to-last component, before the version number.
For examples, see:
For support, use the golang-nuts@ mailing list:
Application Default Credentials provide a simplified way to obtain credentials for authenticating with Google APIs.
The Application Default Credentials authenticate as the application itself, which make them great for working with Google Cloud APIs like Storage or Datastore. They are the recommended form of authentication when building applications that run on Google Compute Engine or Google App Engine.
Default credentials are provided by the golang.org/x/oauth2/google package. To use them, add the following import:
import "golang.org/x/oauth2/google"
Some credentials types require you to specify scopes, and service entry points may not inject them. If you encounter this situation you may need to specify scopes as follows:
import (
"golang.org/x/net/context"
"golang.org/x/oauth2/google"
"google.golang.org/api/compute/v1"
)
func main() {
// Use oauth2.NoContext if there isn't a good context to pass in.
ctx := context.Background()
client, err := google.DefaultClient(ctx, compute.ComputeScope)
if err != nil {
//...
}
computeService, err := compute.New(client)
if err != nil {
//...
}
}
If you need a oauth2.TokenSource, use the DefaultTokenSource function:
ts, err := google.DefaultTokenSource(ctx, scope1, scope2, ...)
if err != nil {
//...
}
client := oauth2.NewClient(ctx, ts)
See also: golang.org/x/oauth2/google package documentation.