来自服务器端的 GA4 自定义事件,有人可以告诉我如何在 php 中执行以下代码吗?

GA4 custom event from server side, can someone tell me how i can do the following code in php?

const measurement_id = `G-XXXXXXXXXX`;
const api_secret = `<secret_value>`;

fetch(`https://www.google-analytics.com/mp/collect?measurement_id=${measurement_id}&`api_secret`=${api_secret}`, {
  method: "POST",
  body: JSON.stringify({
    client_id: 'XXXXXXXXXX.YYYYYYYYYY',
    events: [{
      name: 'tutorial_begin',
      params: {},
    }]
  })
});

有人可以告诉我如何在 php 中执行上述代码吗? 我尝试了以下但它不起作用,

$data = array(
                'client_id' => self::ga_extract_cid_from_cookies(),
                'user_id' => 123,
                'timestamp_micros' => time(),
                'non_perosnalised_ads' => false,
                'events' => array(
                    'name' => 'login'
                )
            );
$dataString = json_encode($data);

$post_url = 'https://www.google-analytics.com/mp/collect?api_secret=xxxxxxx&measurement_id=xxxxxxxxx';
        $ch = curl_init($post_url);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $datastring);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
        curl_setopt($ch, CURLOPT_HTTP_VERSION,CURL_HTTP_VERSION_1_1);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $result = curl_exec($ch);

当我 运行 以上时,它不会向 google 分析帐户发送任何事件。我不知道错误是什么以及如何找到它。在这方面需要帮助。

我认为您示例中的主要问题,除了 $datastring 变量中的拼写错误外,是用户 ID 是作为 int 而不是字符串发送的。我这里的例子有效:

$ip = str_replace('.', '', $_SERVER['REMOTE_ADDR']);
$data = array(
                'client_id' => $ip,
                'user_id' => '123',
                'events' => array(
                    'name' => 'event_serverside'
                )
            );
$datastring = json_encode($data);
$post_url = 'https://www.google-analytics.com/mp/collect?api_secret=xxxxxxxxxx&measurement_id=xxxxxxxxx';
$ch = curl_init($post_url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $datastring);
curl_setopt($ch, CURLOPT_HTTP_VERSION,CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, $post_url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
curl_setopt($ch, CURLOPT_POST, TRUE);
$result = curl_exec($ch);