Browse Source

set token on new client for api post

pull/36/head
Rob Loranger 4 years ago
parent
commit
86e9757c4b
No known key found for this signature in database GPG Key ID: D6F1633A4F0903B8
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      api/api.go

+ 7
- 0
api/api.go View File

@@ -105,6 +105,13 @@ func DoPost(c *cli.Context, post []byte, font string, encrypt, code bool) (*writ
return nil, fmt.Errorf("%v", err)
}

u, _ := config.LoadUser(c)
if u != nil && c.App.Name == "wf" {
cl.SetToken(u.AccessToken)
} else {
return nil, fmt.Errorf("Not currently logged in. Authenticate with: " + executable.Name() + " auth <username>")
}

pp := &writeas.PostParams{
Font: config.GetFont(code, font),
Collection: config.Collection(c),


Loading…
Cancel
Save