0

在 Git bash 窗口的 Cmder 模拟器中的 Window 7 机器上,我试图捕获 ISO 格式的当前日期:

$ date +%s
1513354497

在 curl POST 请求的正文中发送:

$curl.sh -X POST -H "Content-Type: application/json" -H "Cache-Control: no-cache"  -d '{"restricted":true,"marquardtRole":"ContentStreamReservedTagMARQUARDTBIWEEKLYUPDATE","description":"Bi-weekly update covering Marquee development and go-to-market functions.","assetClasses":["Commodities","Credit","Currencies","Economics","Emerging Markets","Equities Macro","Equities Micro","Interest Rates","Prime Services"],"authoringDivision":"SECDIV","titlePattern":"(?i)Marquardt Weekly Update.*","name":"Marquardt BIWEEKLY UPDATE", "updatedBy": "d37286ac275911d788f1b1f11ac60222","updated":"'"date +%s"'"}' "http://localhost.abc.com:8000/maq-app-cnts/services/pubs"     

这是我得到的例外:

<!--                                                                                                              
The request did not match any of the requests defined for this endpoint.                                          
Request definition 1: The JSON object in the body does not conform to the schema                                  
error: instance type (string) does not match any allowed primitive type (allowed: [&quot;integer&quot;])          
    level: &quot;error&quot;                                                                                      
    schema: {&quot;loadingURI&quot;:&quot;definition:/DateTimeInteger#&quot;,&quot;pointer&quot;:&quot;&quot;}    
    instance: {&quot;pointer&quot;:&quot;/updated&quot;}                                                          
    domain: &quot;validation&quot;                                                                                
    keyword: &quot;type&quot;                                                                                     
    found: &quot;string&quot;                                                                                     
    expected: [&quot;integer&quot;]                                                                               

-->   

如何传递date +%sto curl 以在 bash 中正确扩展?

谢谢你。

4

1 回答 1

0

而不是'... ,"updated":"'"date +%s"'"}',请使用'... ,"updated":"'"$(date +%s)"'"}' 参见https://stackoverflow.com/a/30327963/4486184

于 2018-03-07T18:38:06.757 回答