为什么 Google 在同一次点击中同时附加 gclid 和 gbraid 参数?

问题描述 投票:0回答:1

据我所知,Google 仅在无法将特定用户与特定点击关联起来(如 gclid)时才会使用 gbraid 或 wbraid。

查看日志后,我发现对于某些查询,Google 同时使用 gclid 和 gbraid。 我希望看到 gclid 或 gbraid 分别针对不同的点击。

我必须在离线转换中添加 gbraid,还是可以只使用 gclid?

hyperlink ads url-parameters
1个回答
0
投票

您应该只使用一个参数,并尽可能选择 gclid。发送多个参数会导致错误。

参见 google github 代码中的评论:

Args:
    client: An initialized GoogleAdsClient instance.
    customer_id: The client customer ID string.
    conversion_action_id: The ID of the conversion action to upload to.
    **gclid: The Google Click Identifier ID. If set, the wbraid and gbraid
        parameters must be None.**
    conversion_date_time: The the date and time of the conversion (should be
        after the click time). The format is 'yyyy-mm-dd hh:mm:ss+|-hh:mm',
        e.g. '2021-01-01 12:32:45-08:00'.
    conversion_value: The conversion value in the desired currency.
    conversion_custom_variable_id: The ID of the conversion custom
        variable to associate with the upload.
    conversion_custom_variable_value: The str value of the conversion custom
        variable to associate with the upload.
    **gbraid: The GBRAID for the iOS app conversion. If set, the gclid and
        wbraid parameters must be None.
    wbraid: The WBRAID for the iOS app conversion. If set, the gclid and
        gbraid parameters must be None.**
"""
© www.soinside.com 2019 - 2024. All rights reserved.