-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
53 lines (45 loc) · 888 Bytes
/
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
package main
import (
"fmt"
webplayer "github.com/mirrorfm/spotify-webplayer-token/app"
"github.com/mirrorfm/unofficial-spotify-api/app"
"os"
)
func main() {
token, err := webplayer.GetAccessTokenFromEnv()
if err != nil && !token.IsAnonymous {
os.Exit(1)
}
userId, exists := app.GetUserIdFromEnv()
if !exists {
os.Exit(1)
}
res, status, err := app.GetRootList(token.AccessToken, userId)
if err != nil {
os.Exit(1)
}
fmt.Printf("%d\n", status)
ops := []app.DeltaOps{
{
Kind: "MOV",
Mov: app.OpsMov{
FromIndex: 3,
Length: 1,
ToIndex: 1,
},
},
{
Kind: "MOV",
Mov: app.OpsMov{
FromIndex: 3,
Length: 1,
ToIndex: 2,
},
},
}
changeRes, status, err := app.PostRootListChanges(ops, res.Revision, token.AccessToken, userId)
if err != nil {
os.Exit(1)
}
fmt.Printf("res: %d %+v\n", status, changeRes)
}