GithubHelp home page GithubHelp logo

jpush-api-go-client's Introduction

jpush-api-go-client

概述

这是JPush REST API 的 go 版本封装开发包,仅支持最新的REST API v3功能。 REST API 文档:http://docs.jpush.cn/display/dev/Push-API-v3

使用

下载源码,将jpush放入gopath下, improt "jpush/api/push".

推送流程

1.构建要推送的平台: push.Platform

  var pf push.Platform
  //pf.Add(push.ANDROID)
  pf.All

2.构建接收听众: push.Audience

  var ad push.Audience
  //s := []string{"1", "2", "3"}
  //ad.SetID(s)
  ad.All()

3.构建通知 push.AndroidNotice,或者消息: push.Message

  //builder : push.AndroidNotice
  var notice push.AndroidNotice
  notice.SetAlert("alert_test")
  notice.SetTitle("title_test")
  
  //或者push.Message
  var msg push.Message
  msg.Title   = "Hello"
  msg.Content = "祝大家工作顺利

4.构建builder: push.NoticeBuilder 或push.MessageBuilder 或 push.MessageAndNoticeBuilder

  //NoticeBuilder
  nb := push.NewNoticeBuilder()
  nb.SetPlatForm(&pf)
  nb.SetAudience(&ad)
  //nb.SetSimpleNotice("简单通知") //这个是简单通知,
  nb.SetAndroidNotice(&notice)
  
  //or MessageBuilder
  mb := push.NewMessageBuilder()
  mb.SetPlatForm(&pf)
  mb.SetAudience(&ad)
  mb.SetMessage(&msg)

5.构建PushClient,发出推送

  c := push.NewPushClient(secret, appKey)
  str, err := c.Send(nb)
  //str, err := c.Send(mb)

6.未完成

  未完成ios和winphone 通知。

jpush-api-go-client's People

Contributors

james4e avatar ylywyn avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.