3
我有一個digest auth設置就像sinatrarb網站的例子。你如何規定在Sinatra的摘要認證?
#config.ru
require './main'
app = Rack::Auth::Digest::MD5.new(Sinatra::Application) do |username|
{'foo' => 'bar'}[username]
end
app.realm = 'Protected Area'
app.opaque = 'secretkey'
run app
我想知道如果有人知道如何或可以指向我的指導rspecing這個。 謝謝。
Oooh我沒有看到。非常感謝!哈哈我認爲這會變得更加複雜。 – blc 2012-08-03 20:40:31