嗨,我從我的Rails應用程序訪問Pingdom API時遇到問題。這裏是代碼:從Rails使用HTTParty訪問Pingdom API
auth = {:username => pingdom_username,:password => pingdom_password,:key => application_key} response = HTTParty.get(「https://api.pingdom.com/api/ 2.0/checks「,:basic_auth => auth)
我嘗試了很多方法(將應用程序密鑰作爲單獨的標題,具有不同的名稱:key,:app_key,:api_key),但我總是收到錯誤錯誤與應用程序鍵:
所以,
提出response.body
返回:
{「error」:{「statuscode」:403,「statusdesc」:「Forbidden」,「errormessage」:「Missing application key。請參閱文檔。「}}
任何想法我究竟做錯了什麼?謝謝你在前進
如果你不想重新發明輪子,Ruby中有一個Pingdom API寶石。由於原件有些過時,我使用它的回購。 https://github.com/digitalmines/pingdom-client – undefinedvariable