Notification通知
更新时间:2023-04-23
通知功能可以在音视频转码任务状态转换时主动向开发者服务器推送消息。
创建通知
如果需要创建通知可以参考如下代码:
name := "test"
endpoint := "http://www.baidu.com"
err := MEDIA_CLIENT.CreateNotification(name, endpoint)
if err != nil {
fmt.Printf("create notification error: %+v\n", err)
return
}
fmt.Println("create notification success")
查询指定通知
如果需要查询已创建的通知,可以参考如下代码:
name := "test"
response, err := MEDIA_CLIENT.GetNotification(test)
if err != nil {
fmt.Printf("get notification error: %+v\n", err)
return
}
fmt.Printf("get notification success : %+v\n", response)
查询当前用户通知
如果需要查询出本用户所创建的全部通知,可以参考如下代码:
response, err := MEDIA_CLIENT.ListNotification()
if err != nil {
fmt.Printf("list user`s notification error: %+v\n", err)
return
}
for _, notification := range response.Notifications {
fmt.Printf("list notification success : %+v\n", notification)
}
删除通知
如果需要删除某个通知,可以参考如下代码:
name := "test"
err := MEDIA_CLIENT.DeleteNotification(name)
if err != nil {
fmt.Printf("delete notification error: %+v\n", err)
return
}
fmt.Println("delete notification success")