Git Product home page Git Product logo

apns's Introduction

apns is an apple apns libary for http2

feature:

  • support connection pool

  • support ping frame using check connection alive

============

install

	go get golang.org/x/net/http2

	go get github.com/blackbeans/apns

quick start

create apns client

   
   certificate, _ := FromP12File("./push.p12", "xxxx")

   pool, err := NewConnPool(10, 10, 10, 20*time.Second,
   	func(ctx context.Context) (*ApnsConn, error) {
   		conn, err := NewApnsConn(ctx, certificate, URL_PRODUCTION, 10*time.Second)
   		if nil != err {
   			log.Printf("Create Apns Conn Fail %v\n",err)
   		}
   		return conn, err
   })

   //build notification 

   notify := &Notification{
   		DeviceToken: "your device token",
   		Topic:       "bundleid ",
   		ApnsID:      "uuid",
   		Payload: PayLoad{
   			Aps: Aps{Alert: fmt.Sprintf("hello%d", i)}}}
   
   //send push

   c,err:= pool.Get()
   if nil!=err{
   	//
   }

   //note : release connection
   defer pool.Release(c)

   err =c.SendMessage(notify)
   
   if nil!=err{
   	//encounter error
   }else{
   	if notify.Response.Status != 200{
   		//may send error
   		log.Printf("Response Err %s",notify.Response.Reason)

   		//maybe u need resent
   	}
   }

apns's People

Contributors

blackbeans avatar taililong 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.