如何获取php curl请求中授权header解析的FCM服务器密钥?

How to get FCM server key which is to be parsed in authorization header in php curl request?

我尝试使用从 > firebase 控制台 > 我的项目 > 项目设置 > 常规选项卡获得的 web api 密钥。 注意:目前我没有使用付费开发者帐户。我刚刚创建了一个新的 google 帐户并创建了一个项目。

$url = 'https://fcm.googleapis.com/fcm/send';
$server_key = '??????WHAT TO PUT HERE ????';
$fields = [];
$data = [];
$data['type'] = $type;
$data['title'] = $title;
$data['message'] = $message;
$data['sound'] = 'default';
$fields['data'] = $data;
if (is_array($id)) {
    $fields['registration_ids'] = $id; // array of registration ids
} else {
    $fields['to'] = $id; single registration id
}
//$fields['content_available'] = "true";
//header with content_type api key
$headers = array(
    'Content-Type:application/json',
    'Authorization:key=' . $server_key
);
$notification = array();
$notification['title'] = $title;
$notification['body'] = $message;
$notification['sound'] = 'default';
$notification['click_action'] = $type;
$fields['notification'] = $notification;

$fields = json_encode($fields);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$result = curl_exec($ch);
curl_close($ch);
return $result;

单击 Overview 导航选项右侧的 Setting 图标,然后从弹出窗口和 select cloud Messaging 选项卡中单击 select Project Setting请参阅 Server KeyLegacy Server Key