Browse Source

APIKey -> api_key

pull/75/head
Luke Barnard 8 years ago
parent
commit
15aaa3b3a0
  1. 4
      src/github.com/matrix-org/go-neb/services/guggy/guggy.go

4
src/github.com/matrix-org/go-neb/services/guggy/guggy.go

@ -28,7 +28,7 @@ type guggyGifResult struct {
type guggyService struct {
id string
serviceUserID string
APIKey string
api_key string
}
func (s *guggyService) ServiceUserID() string { return s.serviceUserID }
@ -106,7 +106,7 @@ func (s *guggyService) text2gifGuggy(querySentence string) (*guggyGifResult, err
return nil, err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("apiKey", s.APIKey)
req.Header.Add("apiKey", s.api_key)
res, err := client.Do(req)
if res != nil {

Loading…
Cancel
Save