Created
February 5, 2018 11:53
-
-
Save hitsumabushi/baaeefd241e27ab0414763bdc6a93f11 to your computer and use it in GitHub Desktop.
Revisions
-
hitsumabushi created this gist
Feb 5, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,43 @@ package main import ( "context" "fmt" "io/ioutil" "log" "golang.org/x/oauth2/google" "google.golang.org/api/option" "cloud.google.com/go/pubsub" ) const ( credentialJSONPath = "" projectID = "" topicName = "" ) func main() { jsonKey, err := ioutil.ReadFile(credentialJSONPath) conf, err := google.JWTConfigFromJSON(jsonKey, pubsub.ScopePubSub, pubsub.ScopeCloudPlatform) if err != nil { log.Fatal(err) } ctx := context.Background() ts := conf.TokenSource(ctx) c, err := pubsub.NewClient(ctx, projectID, option.WithTokenSource(ts)) if err != nil { log.Fatal("new client:", err) } sub := c.Subscription(topicName) err = sub.Receive(context.Background(), func(ctx context.Context, m *pubsub.Message) { log.Printf("Got message: %s", m.Data) m.Ack() }) if err != nil { log.Fatal("Receive:", err) } }