1 Star 0 Fork 1

ttpc2008/BaiduPCS-Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
quota.go 823 Bytes
一键复制 编辑 原始数据 按行查看 历史
package baidupcs
import (
"fmt"
"github.com/json-iterator/go"
)
type quotaInfo struct {
*ErrInfo
Quota int64 `json:"quota"`
Used int64 `json:"used"`
}
// QuotaInfo 获取当前用户空间配额信息
func (p *PCSApi) QuotaInfo() (quota, used int64, err error) {
operation := "获取当前用户空间配额信息"
p.setAPI("quota", "info")
resp, err := p.client.Req("GET", p.url.String(), nil, nil)
if err != nil {
return
}
defer resp.Body.Close()
quotaInfo := &quotaInfo{
ErrInfo: NewErrorInfo(operation),
}
d := jsoniter.NewDecoder(resp.Body)
err = d.Decode(quotaInfo)
if err != nil {
return 0, 0, fmt.Errorf("%s, json 数据解析失败, %s", operation, err)
}
if quotaInfo.ErrCode != 0 {
return 0, 0, quotaInfo.ErrInfo
}
quota = quotaInfo.Quota
used = quotaInfo.Used
return
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ttpc2008/BaiduPCS-Go.git
git@gitee.com:ttpc2008/BaiduPCS-Go.git
ttpc2008
BaiduPCS-Go
BaiduPCS-Go
v3.3.1

搜索帮助