5

我正在尝试编写一个 Ruby 脚本来使用图片库站点 Piwigo 上的 API,这需要您首先使用一个 HTTP 帖子登录,然后使用另一个帖子上传图像。

这是我到目前为止所得到的,但它不起作用,只是返回一个 401 错误,任何人都可以看到我哪里出错了吗?

require 'net/http'
require 'pp'

http = Net::HTTP.new('mydomain.com',80)
path = '/piwigo/ws.php'
data = 'method=pwg.session.login&username=admin&password=password'
resp, data = http.post(path, data, {})
if (resp.code == '200')
    cookie = resp.response['set-cookie']
    data = 'method=pwg.images.addSimple&image=image.jpg&category=7'
    headers = { "Cookie" => cookie }
    resp, data = http.post(path, data, headers)
    puts resp.code
    puts resp.message
end

运行时会给出此响应;

$ ruby piwigo.rb
401
Unauthorized

他们的 API 页面上有一个 Perl 示例,我试图将其转换为 Ruby http://piwigo.org/doc/doku.php?id=dev:webapi:pwg.images.addsimple

4

2 回答 2

1

通过使用 nice_http gem:https ://github.com/MarioRuiz/nice_http NiceHttp 将处理您的 cookie,因此您无需执行任何操作

require 'nice_http'
path = '/piwigo/ws.php'
data = '?method=pwg.session.login&username=admin&password=password'

http = NiceHttp.new('http://example.com')
resp = http.get(path+data)

if resp.code == 200
    resp = http.post(path)
    puts resp.code
    puts resp.message
end

此外,如果您愿意,您可以使用 http.cookies 添加自己的 cookie

于 2019-01-02T15:13:02.443 回答
0

您可以使用名为mechanize. 它透明地处理cookie。

于 2013-05-16T22:09:41.317 回答