-
Notifications
You must be signed in to change notification settings - Fork 5
/
emotions.go
67 lines (61 loc) · 2.19 KB
/
emotions.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
63
64
65
66
67
// https://open.weibo.com/wiki/2/emotions
// 请求参数
// access_token true string 采用 OAuth 授权方式为必填参数, OAuth 授权后获得。
// type false string 表情类别, face :普通表情、 ani :魔法表情、 cartoon :动漫表情,默认为 face 。
// language false string 语言类别, cnname :简体、 twname :繁体,默认为 cnname 。
package weibo
import (
"encoding/json"
"io/ioutil"
"net/http"
"net/url"
"github.com/pkg/errors"
)
// RespEmotions Emotions 接口返回结果
type RespEmotions []struct {
Category string `json:"category"`
Common bool `json:"common"`
Hot bool `json:"hot"`
Icon string `json:"icon"`
Phrase string `json:"phrase"`
Picid interface{} `json:"picid"`
Type string `json:"type"`
URL string `json:"url"`
Value string `json:"value"`
}
// Emotions 获取微博官方表情的详细信息
// emotionType 表情类别, face :普通表情、 ani :魔法表情、 cartoon :动漫表情,默认为 face
// language 语言类别, cnname :简体、 twname :繁体,默认为 cnname
func (w *Weibo) Emotions(token, emotionType, language string) (*RespEmotions, error) {
apiURL := "https://api.weibo.com/2/emotions.json"
data := url.Values{
"access_token": {token},
"type": {emotionType},
"language": {language},
}
req, err := http.NewRequest(http.MethodGet, apiURL, nil)
if err != nil {
return nil, errors.Wrap(err, "weibo Emotions NewRequest error")
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.URL.RawQuery = data.Encode()
resp, err := w.client.Do(req)
if err != nil {
return nil, errors.Wrap(err, "weibo Emotions Do error")
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, errors.Wrap(err, "weibo Emotions ReadAll error")
}
e := &RespError{}
json.Unmarshal(body, e)
if e.Error != "" && e.ErrorCode != 0 {
return nil, errors.New("weibo Emotions resp error:" + e.Error)
}
r := &RespEmotions{}
if err := json.Unmarshal(body, r); err != nil {
return nil, errors.Wrap(err, "weibo Emotions Unmarshal error:"+string(body))
}
return r, nil
}