sdk

package module
v0.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 15, 2025 License: Apache-2.0 Imports: 0 Imported by: 0

README

jiguang-sdk-go

Go Reference GitHub release GitHub go.mod Go version Go Report Card GitHub issues GitHub pull requests GitHub License

简介

jiguang-sdk-go 是基于 Go 的极光 REST API 封装开发包,参考了极光官方提供的 jiguang-sdk-java 实现。 它致力于为开发者提供便捷、轻量和高效的服务端集成方式,并支持最新的 API 功能。

特性
  • 全面支持 “极光推送(JPush)” 相关功能模块;
  • 简单易用的 Go 接口;
  • 支持 Go 1.16 及其以上版本。

一、极光文档

以下是 SDK 支持的极光 REST API 功能模块及官方文档链接:

1. 极光推送(JPush)

二、快速开始

  1. 使用以下命令安装 SDK:
    go get github.com/calvinit/jiguang-sdk-go@latest
    

三、使用示例

  1. 在项目中引入 SDK:

    import sdk "github.com/calvinit/jiguang-sdk-go"
    
  2. 示例代码(假设用于极光应用的「普通推送」):

    package main
    
    import (
        "context"
        "fmt"
        "os"
    
        "github.com/calvinit/jiguang-sdk-go/api/jpush/device/platform"
        "github.com/calvinit/jiguang-sdk-go/api/jpush/push"
    )
    
    func main() {
        pushAPIv3, _ := push.NewAPIv3Builder().
    		SetAppKey(os.Getenv("JPUSH_APP_KEY")).
    		SetMasterSecret(os.Getenv("JPUSH_MASTER_SECRET")).
    		Build()
    
        param := &push.SendParam{
            Platform: platform.All,
            Audience: push.BroadcastAuds,
            Notification: &push.Notification{
                Alert: "Hello, JPush!",
            },
        }
    
        result, err := pushAPIv3.Send(context.Background(), param)
        if err != nil {
            panic(err)
        }
    
        if result.IsSuccess() {
            fmt.Printf("Send success, MsgID: %s, SendNo: %s\n", result.MsgID, result.SendNo)
        } else {
            fmt.Printf("Send failed: %s\n", result.Error)
        }
    }
    
  3. 查看完整示例代码:https://github.com/calvinit/jiguang-sdk-go/tree/main/examples


四、支持与贡献

  • 如果遇到问题,请在 Issues 页面 提交。
  • 欢迎提交 Pull Request,为项目贡献代码。

五、许可证

本项目采用 Apache 2.0 许可证。


六、Git Hooks 设置

为了确保代码质量并执行必要的预推送检查,项目包含了一些 Git Hooks 文件。如果您想使用这些 Git Hooks,请按照以下步骤操作:

  1. 克隆项目并进入项目目录后,创建符号链接来启用 Git Hooks:
    ln -s ../../.githooks/pre-push .git/hooks/pre-push
    
  2. 确保您为 Git Hooks 脚本添加了执行权限:
    chmod +x .githooks/pre-push
    
  3. 确保您在推送之前已经正确地配置了所需的 Git Hooks。如果您没有设置,它们将不会被自动运行。

七、致谢

  • 感谢 tjfoc/gmsm 库提供的支持,帮助我们实现了 SM2 加解密算法的核心功能。

八、参考链接

Documentation

Index

Constants

View Source
const Version = "v0.1.2"

当前极光 SDK 的版本号。

Variables

This section is empty.

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL