我試圖使用PHP包裝器設在這裏的高層API:高層API返回錯誤代碼500
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只是不接受自定義字段。任何想法,爲什麼這是?
您是否提供帳戶名稱和訪問令牌? –
是的......這不是問題。我使用API成功地做了其他事情,我知道我確定我指定了我的帳戶名稱和API密鑰。 –