使用 SOAP 和curl 将列添加到表中。如何将访问令牌添加到xml?

使用 SOAP 和curl 将列添加到表中。如何将访问令牌添加到xml?

我有一个简单的 bash 文件,它获取访问令牌,然后使用 xml 文件通过 SOAP API 将列添加到 Salesforce Marketing Cloud 中的表中。问题是我不知道如何使用变量自动将访问令牌放入 xml 文件中。我尝试了“$token”及其变体,但没有成功。这是我的代码:

#!/bin/sh

# Get an authorisation Token

token_output=$(curl \
-H "Content-Type: application/json" \
-d '
{
    "grant_type": "client_credentials",
    "client_id": "ccccccc",
    "client_secret": "sssssss",
    "scope": null
}' \
https://xxxxxxxx.auth.marketingcloudapis.com/v2/Token | jq '.') 

token=$(jq -r '.access_token' <<< "$token_output") \


curl -XPOST \
-H "Content-type: text/xml; charset=utf-8" \
-H "SOAPAction: Update" \
-d @updateDE.xml \
https://xxxxxxxx.soap.marketingcloudapis.com/Service.asmx

这是 XML 文件。

<?xml version="1.0" encoding="UTF-8"?>
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <s:Header>
        <a:Action s:mustUnderstand="1">Update</a:Action>
        <a:To s:mustUnderstand="1">https://xxxxxxxx.soap.marketingcloudapis.com/Service.asmx</a:To>
        <fueloauth xmlns="http://exacttarget.com">"$token"</fueloauth>
    </s:Header>
    <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
        <UpdateRequest xmlns="http://exacttarget.com/wsdl/partnerAPI">
            <Options /> 
            <Objects xsi:type="ns1:DataExtension" xmlns:ns1="http://exacttarget.com/wsdl/partnerAPI">
                <CustomerKey>0B35F2DD-6A27-448D-96D8-8CBD7598FD85</CustomerKey> 
                <Fields>
                    <Field>
                        <Name>New Field4</Name> 
                        <MaxLength>200</MaxLength> 
                        <IsRequired>true</IsRequired> 
                    </Field>
                </Fields>
            </Objects>
        </UpdateRequest>
    </s:Body>
</s:Envelope>

提前致谢。

答案1

您可以放置​​已知文本来代替标记,例如。TOKEN:

...
<fueloauth xmlns="http://exacttarget.com">TOKEN</fueloauth>
...

然后使用 sed 将该文本替换为实际标记:

sed -i 's/TOKEN/'"$token"'/g' file.xml

相关内容