1

我想通过 rest API 获取所有自定义标签。我在顶点页面中使用了自定义标签,例如

{!$Label.MyCustomLabel}

. 那么我可以通过rest api获取有关MyCustomLabel的信息吗?

任何指导将不胜感激。谢谢

4

2 回答 2

1

从组织中获取自定义标签并不是一个简单的方法。CustomLabel/ExternalString 对象不可查询,services/data/v43.0/nouns其余 api 部分也不包含它们。

目前从 Salesforce 获取自定义标签的唯一方法是读取元数据。最快的方法可能是使用同步listMetadatareadMetadata调用。这使用了 SOAP api,所以这里涉及到一些 XML。

1., listMetadata,替换org-id为您的组织 ID,并替换session-id为您的会话 ID。

curl \
-H 'Content-Type: text/xml' \
-H 'SOAPAction: ""' \
https://ap4.salesforce.com/services/Soap/m/38.0/org-id \
-d '<?xml version="1.0" encoding="utf-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header><n1:SessionHeader xmlns:n1="http://soap.sforce.com/2006/04/metadata"><n1:sessionId>session-id</n1:sessionId></n1:SessionHeader></env:Header><env:Body><n1:listMetadata xmlns:n1="http://soap.sforce.com/2006/04/metadata"><n1:queries><n1:type type="xsd:string">CustomLabel</n1:type></n1:queries></n1:listMetadata></env:Body></env:Envelope>'

2. 拉出标签内的所有自定义标签<fullName>名称

3., readMetadata,替换org-id为您的组织ID,替换session-id为您的会话ID,并替换custom-label-name为自定义标签的名称。

curl \
-H 'Content-Type: text/xml' \
-H 'SOAPAction: ""' \
https://ap4.salesforce.com/services/Soap/m/38.0/org-id \
-d '<?xml version="1.0" encoding="utf-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header><n1:SessionHeader xmlns:n1="http://soap.sforce.com/2006/04/metadata"><n1:sessionId>session-id</n1:sessionId></n1:SessionHeader></env:Header><env:Body><n1:readMetadata xmlns:n1="http://soap.sforce.com/2006/04/metadata"><n1:type type="xsd:string">CustomLabel</n1:type><n1:fullNames type="xsd:string">custom-label-name</n1:fullNames><n1:fullNames type="xsd:string">custom-label-name</n1:fullNames></n1:readMetadata></env:Body></env:Envelope>' 
于 2018-07-26T08:36:16.700 回答
-1

尝试: 1 - 从控制台,激活工具 api 2 - 查询:

Select Id, name, masterlabel, ManageableState, Value 
FROM ExternalString
于 2020-05-26T10:24:09.600 回答