4 Star 11 Fork 7

夏季的风/go-push-sdk-手机消息推送SDK

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
platform.go 1.88 KB
一键复制 编辑 原始数据 按行查看 历史
package setting
type PlatformType string
const (
HuaweiPlatform PlatformType = "huawei"
XiaomiPlatform PlatformType = "xiaomi"
MeizuPlatform PlatformType = "meizu"
VivoPlatform PlatformType = "vivo"
OppoPlatform PlatformType = "oppo"
IosCertPlatform PlatformType = "ios"
IosTokenPlatform PlatformType = "ios-token"
)
type PushConfig struct {
ConfigHuawei `json:"huawei"`
ConfigXiaomi `json:"xiaomi"`
ConfigMeizu `json:"meizu"`
ConfigOppo `json:"oppo"`
ConfigVivo `json:"vivo"`
ConfigIosCert `json:"ios"`
ConfigIosToken `json:"ios-token"`
}
type ConfigHuawei struct {
AppPkgName string `json:"appPkgName"` // 应用包名
ClientId string `json:"clientId"` // 用户在联盟申请的APPID
ClientSecret string `json:"clientSecret"` // 应用秘钥
}
type ConfigXiaomi struct {
AppPkgName string `json:"appPkgName"`
AppSecret string `json:"appSecret"`
}
type ConfigMeizu struct {
AppPkgName string `json:"appPkgName"`
AppId string `json:"appId"`
AppSecret string `json:"appSecret"`
}
type ConfigOppo struct {
AppPkgName string `json:"appPkgName"`
AppKey string `json:"appKey"`
MasterSecret string `json:"masterSecret"`
}
type ConfigVivo struct {
AppPkgName string `json:"appPkgName"`
AppId string `json:"appId"`
AppKey string `json:"appKey"`
AppSecret string `json:"appSecret"`
}
type ConfigIosCert struct {
CertPath string `json:"certPath"`
Password string `json:"password"`
CertPathBox string `json:"certPathBox"`
PasswordBox string `json:"passwordBox"`
}
type ConfigIosToken struct {
TeamId string `json:"teamId"`
KeyId string `json:"keyId"`
SecretFile string `json:"secretFile"`
BundleId string `json:"bundleId"`
TeamIdBox string `json:"teamIdBox"`
KeyIdBox string `json:"keyIdBox"`
SecretFileBox string `json:"secretFileBox"`
BundleIdBox string `json:"bundleIdBox"`
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ling-bin/go-push-sdk.git
git@gitee.com:ling-bin/go-push-sdk.git
ling-bin
go-push-sdk
go-push-sdk-手机消息推送SDK
v1.2.4

搜索帮助

0d507c66 1850385 C8b1a773 1850385