我尝试使用HighRise的API创建新人:
curl -u xxxxxxx:X -XPOST -d '<?xml version="1.0" encoding="UTF-8"?>
<person>
<first-name>Test</first-name>
<last-name>Acct</last-name>
<title>CEO</title>
<company-name>Test inc</company-name>
<contact-data>
<email-addresses>
<email-address>
<address>a@b.com</address>
<location>Home</location>
</email-address>
</email-addresses>
<phone-numbers>
<phone-number>
<number>1111</number>
<location>Home</location>
</phone-number>
</phone-numbers>
</contact-data>
</person>' 'https://xxxxxx.highrisehq.com/people.xml'
然而,这给出了以下输出:
<?xml version="1.0" encoding="UTF-8"?>
<errors>
<error>First name is missing. Contacts must have a name</error>
</errors>
我很困惑,因为我似乎正在关注他们的API并提供他们期望的信息(如记录docs)。
这是他们的API中的错误,还是我做错了什么?
答案 0 :(得分:1)
通常需要在xml POST请求中添加Content-Type
标头。在卷曲请求中添加以下内容。
-H "Content-Type: application/xml"