0

我正在尝试使用 PHP 构建以下数组,以便可以将卡片发送到 Google Hangouts Chat Webhook。

{
    "cards": [
        {
            "sections": [
                {
                    "widgets": [
                        {
                            "keyValue": {
                                "topLabel": "Order No.",
                                "content": "12345",
                                "contentMultiline": "false",
                                "bottomLabel": "Delayed",
                                "onClick": {
                                     "openLink": {
                                        "url": ""
                                     }
                                 },
                                "icon": "TRAIN",
                                "button": {
                                    "textButton": {
                                       "text": "VISIT WEBSITE",
                                       "onClick": {
                                           "openLink": {
                                                "url": ""
                                            }
                                        }
                                      }
                                 }
                             }
                        }
                    ]
                }
            ]
        }
    ]
}

这是我到达但似乎不起作用的地方..

$card["cards"]["sections"]["widgets"]["keyValue"]["topLabel"] = "Issue No";
$card["cards"]["sections"]["widgets"]["keyValue"]["topLabel"] = $_GET["issueid"];
$card["cards"]["sections"]["widgets"]["keyValue"]["contentMultiline"] = false;

任何帮助都会令人惊叹,只是简要概述了如何在 PHP 中构造上述数组。

谢谢!

4

1 回答 1

1

解决了。

$card["cards"]["sections"]["widgets"]["keyValue"]["topLabel"] = $_GET["issueid"];

这将覆盖我认为["topLabel"]应该["content"]在第二个索引中的那个??

谢谢@devpro

于 2019-04-24T14:03:04.250 回答