ZBLOG

fcm推送消息的golang语言的示例

以下是一个使用Golang发送FCM推送消息的示例代码:

package main

import (
	"bytes"
	"encoding/json"
	"fmt"
	"net/http"
)

func main() {
	fcmServerKey := "YOUR_FCM_SERVER_KEY"

	message := map[string]interface{}{
		"to": "/topics/mytopic",
		"data": map[string]string{
			"title":   "Hello",
			"message": "This is a test notification",
		},
	}

	payload, err := json.Marshal(message)
	if err != nil {
		fmt.Println("Failed to marshal message:", err)
		return
	}

	request, err := http.NewRequest("POST", "https://fcm.googleapis.com/fcm/send", bytes.NewBuffer(payload))
	if err != nil {
		fmt.Println("Failed to create request:", err)
		return
	}
	request.Header.Set("Content-Type", "application/json")
	request.Header.Set("Authorization", fmt.Sprintf("key=%s", fcmServerKey))

	client := &http.Client{}
	response, err := client.Do(request)
	if err != nil {
		fmt.Println("Failed to send request:", err)
		return
	}
	defer response.Body.Close()

	fmt.Println("Response Status:", response.Status)
	fmt.Println("Response Body:")
	buf := new(bytes.Buffer)
	buf.ReadFrom(response.Body)
	fmt.Println(buf.String())
}

请注意,您需要将YOUR_FCM_SERVER_KEY替换为您自己的FCM服务器密钥。此代码使用HTTP请求向FCM发送JSON格式的推送消息。


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=9479

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?