我正在尝试使用api发布请求来创建内容,并且正在使用httparty gem。
def initialize(token)
@token = "Bearer kdkdkfvl"
end
def auth
{ AUTHORIZATION: @token }
end
response = HTTParty.post("url", :headers => { "Authorization" => auth}, :body => article)
运行代码时,我得到
NoMethodError: undefined method
条'#
`
我被困在这里。需要帮助
答案 0 :(得分:2)
您正在传递一个期望有字符串的哈希。
您想要类似的东西
def auth
@token
end