我正在尝试将 PHP Wrapper 用于位于此处的 Highrise API:
https://github.com/ignaciovazquez/Highrise-PHP-Api
我需要为 HighrisePerson 对象设置一个自定义字段。根据代码,这应该非常简单......
$person->setCustomField("Field Name", $value); // Pulled almost straight out of the documentation
不幸的是,当我尝试将其保存回高层时,$person->save();
我收到以下错误:
Uncaught exception 'Exception' with message 'API for Person returned Status Code: 500 Expected Code: 200'
所以错误不在代码中...... Highrise 只是不接受自定义字段。关于为什么会这样的任何想法?