Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fixed missing import references #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion admin_sdk/directory/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/admin/directory/v1"
directory "google.golang.org/api/admin/directory/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
4 changes: 2 additions & 2 deletions admin_sdk/reports/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ import (
"net/http"
"os"
"time"

"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/admin/reports/v1"
admin "google.golang.org/api/admin/reports/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion admin_sdk/reseller/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/reseller/v1"
reseller "google.golang.org/api/reseller/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
10 changes: 5 additions & 5 deletions apps_script/execute/execute.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ package main
import (
"encoding/json"
"fmt"
"golang.org/x/oauth2/google"
"io/ioutil"
"log"
"net/http"
"os"

"golang.org/x/net/context"
"golang.org/x/oauth2"
"google.golang.org/api/script/v1"
"golang.org/x/oauth2/google"
script "google.golang.org/api/script/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down Expand Up @@ -84,7 +85,6 @@ func saveToken(path string, token *oauth2.Token) {
json.NewEncoder(f).Encode(token)
}


func main() {
// [START apps_script_api_execute]

Expand Down Expand Up @@ -126,7 +126,7 @@ func main() {
// The values of this map are the script's 'errorMessage' and
// 'errorType', and an array of stack trace elements (which also need to
// be cast as maps).
var details map[string]interface{};
var details map[string]interface{}
json.Unmarshal(resp.Error.Details[0], &details)
fmt.Printf("Script details message: %s\n", details["errorMessage"])

Expand All @@ -143,7 +143,7 @@ func main() {
// based upon what types the Apps Script function returns. Here, the
// function returns an Apps Script Object with String keys and values, so
// must be cast into a map (folderSet).
var r map[string]interface{};
var r map[string]interface{}
json.Unmarshal(resp.Response, &r)
folderSet := r["result"].(map[string]interface{})
if len(folderSet) == 0 {
Expand Down
2 changes: 1 addition & 1 deletion apps_script/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/script/v1"
script "google.golang.org/api/script/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion calendar/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/calendar/v3"
calendar "google.golang.org/api/calendar/v3"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion classroom/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/classroom/v1"
classroom "google.golang.org/api/classroom/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
49 changes: 25 additions & 24 deletions classroom/snippets/createCourse.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,32 @@
package main

import (
"fmt"
"google.golang.org/api/classroom/v1"
"log"
"net/http"
"fmt"
"log"
"net/http"

classroom "google.golang.org/api/classroom/v1"
)

func createCourse(client *http.Client) {
srv, err := classroom.New(client)
if err != nil {
log.Fatalf("Unable to create classroom Client %v", err)
}
// [START classroom_create_course]
c := &classroom.Course{
Name: "10th Grade Biology",
Section: "Period 2",
DescriptionHeading: "Welcome to 10th Grade Biology",
Description: "We'll be learning about about the structure of living creatures from a combination of textbooks, guest lectures, and lab work. Expect to be excited!",
Room: "301",
OwnerId: "me",
CourseState: "PROVISIONED",
}
course, err := srv.Courses.Create(c).Do()
if err != nil {
log.Fatalf("Course unable to be created %v", err)
}
// [END classroom_create_course]
fmt.Printf("Created course: %v", course.Id)
srv, err := classroom.New(client)
if err != nil {
log.Fatalf("Unable to create classroom Client %v", err)
}
// [START classroom_create_course]
c := &classroom.Course{
Name: "10th Grade Biology",
Section: "Period 2",
DescriptionHeading: "Welcome to 10th Grade Biology",
Description: "We'll be learning about about the structure of living creatures from a combination of textbooks, guest lectures, and lab work. Expect to be excited!",
Room: "301",
OwnerId: "me",
CourseState: "PROVISIONED",
}
course, err := srv.Courses.Create(c).Do()
if err != nil {
log.Fatalf("Course unable to be created %v", err)
}
// [END classroom_create_course]
fmt.Printf("Created course: %v", course.Id)
}
59 changes: 30 additions & 29 deletions classroom/snippets/getCourse.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,40 +17,41 @@
package main

import (
"fmt"
"golang.org/x/oauth2/google"
"google.golang.org/api/classroom/v1"
"io/ioutil"
"log"
"net/http"
"fmt"
"io/ioutil"
"log"
"net/http"

"golang.org/x/oauth2/google"
classroom "google.golang.org/api/classroom/v1"
)

func getCourse(client *http.Client) {
// [START classroom_get_course]
srv, err := classroom.New(client)
if err != nil {
log.Fatalf("Unable to create classroom Client %v", err)
}
id := "123456"
course, err := srv.Courses.Get(id).Do()
if err != nil {
log.Fatalf("Course unable to be retrieved %v", err)
}
// [END classroom_get_course]
fmt.Printf("Course with ID %v found.", course.Id)
// [START classroom_get_course]
srv, err := classroom.New(client)
if err != nil {
log.Fatalf("Unable to create classroom Client %v", err)
}
id := "123456"
course, err := srv.Courses.Get(id).Do()
if err != nil {
log.Fatalf("Course unable to be retrieved %v", err)
}
// [END classroom_get_course]
fmt.Printf("Course with ID %v found.", course.Id)
}

func main() {
b, err := ioutil.ReadFile("credentials.json")
if err != nil {
log.Fatalf("Unable to read client secret file: %v", err)
}
b, err := ioutil.ReadFile("credentials.json")
if err != nil {
log.Fatalf("Unable to read client secret file: %v", err)
}

// If modifying these scopes, delete your previously saved token.json.
config, err := google.ConfigFromJSON(b, classroom.ClassroomCoursesScope)
if err != nil {
log.Fatalf("Unable to parse client secret file to config: %v", err)
}
client := getClient(config)
getCourse(client)
// If modifying these scopes, delete your previously saved token.json.
config, err := google.ConfigFromJSON(b, classroom.ClassroomCoursesScope)
if err != nil {
log.Fatalf("Unable to parse client secret file to config: %v", err)
}
client := getClient(config)
getCourse(client)
}
2 changes: 1 addition & 1 deletion docs/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/docs/v1"
docs "google.golang.org/api/docs/v1"
)

// Retrieves a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion drive/activity-v2/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/driveactivity/v2"
driveactivity "google.golang.org/api/driveactivity/v2"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion drive/activity/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/appsactivity/v1"
appsactivity "google.golang.org/api/appsactivity/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion drive/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/drive/v3"
drive "google.golang.org/api/drive/v3"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion gmail/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/gmail/v1"
gmail "google.golang.org/api/gmail/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion people/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/people/v1"
people "google.golang.org/api/people/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion sheets/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/sheets/v4"
sheets "google.golang.org/api/sheets/v4"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
2 changes: 1 addition & 1 deletion slides/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/slides/v1"
slides "google.golang.org/api/slides/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down
7 changes: 4 additions & 3 deletions slides/snippets/oauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ package snippets

import (
"log"

"golang.org/x/net/context"
"golang.org/x/oauth2/google"
"google.golang.org/api/drive/v2"
"google.golang.org/api/sheets/v4"
"google.golang.org/api/slides/v1"
drive "google.golang.org/api/drive/v2"
sheets "google.golang.org/api/sheets/v4"
slides "google.golang.org/api/slides/v1"
)

// A group of Google services.
Expand Down
5 changes: 3 additions & 2 deletions slides/snippets/presentations.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package snippets
import (
"fmt"
"log"
"google.golang.org/api/drive/v2"
"google.golang.org/api/slides/v1"

drive "google.golang.org/api/drive/v2"
slides "google.golang.org/api/slides/v1"
)

func createPresentation() string {
Expand Down
3 changes: 2 additions & 1 deletion slides/snippets/test_utils.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package snippets

import (
"google.golang.org/api/slides/v1"
"log"

slides "google.golang.org/api/slides/v1"
)

func deleteFileOnCleanup(id string) {
Expand Down
2 changes: 1 addition & 1 deletion tasks/quickstart/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/tasks/v1"
tasks "google.golang.org/api/tasks/v1"
)

// Retrieve a token, saves the token, then returns the generated client.
Expand Down