我一直收到這個錯誤:「757:意外的令牌在'無法驗證您的訪問級別的URL。您必須使用正確的憑據登錄」 在我的Ruby on Rails應用程序。Plivo:嘗試發送短信時出錯
下面的代碼:
def send_message_plivo
p = RestAPI.new(ENV["PLIVO_AUTHID"], ENV["PLIVO_AUTHTOKEN"])
params = {
"src" => "1111111111",
"dest" => "xxxxxxxxxxxxx", # <- my only verified number
"text" => "Hi! From Plivo",
"url" => "http://localhost:3000/sent_message_status",
"method" => "POST"
}
response = p.send_message(params) # <- line of the error!
puts response
end
你知道我缺少什麼?
是真的假設爲「dest」的參數嗎?我在這裏看到「dst」:https://www.plivo.com/docs/api/message/ –
對於PLIVO_AUTHID,你使用你的plivo用戶名還是AUTH ID(20ish「random」字符串)? –
你是對的。我有問題的env變量,我直接把鍵,並將「dest」改爲「dst」,它的工作! – ste