-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
62 lines (48 loc) · 1.47 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main
import (
"flag"
"fmt"
"log"
"os"
"google.golang.org/api/youtube/v3"
)
var (
filename = flag.String("filename", "BigBuckBunny_320x180.mp4", "Name of video file to upload")
)
func main() {
//appConfig := env.GetEnvConfig()
flag.Parse()
if *filename == "" {
log.Fatalf("You must provide a filename of a video file to upload")
}
client := getClient(youtube.YoutubeUploadScope)
service, err := youtube.New(client)
// Create a new YouTube service
//service, err := youtube.NewService(ctx, option.WithTokenSource(conf.TokenSource(ctx, tok)))
if err != nil {
log.Fatalf("Unable to create YouTube service: %v", err)
}
upload := &youtube.Video{
Snippet: &youtube.VideoSnippet{
Title: "Test Title",
Description: "Test Description", // can not use non-alpha-numeric characters
CategoryId: "22",
},
Status: &youtube.VideoStatus{PrivacyStatus: "unlisted"},
}
// The API returns a 400 Bad Request response if tags is an empty string.
upload.Snippet.Tags = []string{"test", "upload", "api"}
log.Println("Uploading video...", service)
call := service.Videos.Insert([]string{"snippet", "status"}, upload)
log.Println("Uploading video...", call)
file, err := os.Open(*filename)
defer file.Close()
if err != nil {
log.Fatalf("Error opening %v: %v", *filename, err)
}
response, err := call.Media(file).Do()
if err != nil {
log.Fatalf("Error making YouTube API call: %v", err)
}
fmt.Printf("Upload successful! Video ID: %v\n", response.Id)
}