English 中文(简体)
未找到 sinatra- aunatra- lau- condentation 路线
原标题:sinatra-authentication routes not found

我试图在Sinatra应用软件中添加Sinatra-audetication 宝石, 当它在那里做它的一部分事情时, 出于某种原因,路线似乎没有被添加。代码基本原理是:

require  sinatra 
require  digest/sha1 
require  rack-flash 
require  mongo_mapper 
require  sinatra-authentication 

MongoMapper.connection = Mongo::Connection.new( 127.0.0.1 , 27017, :pool_size => 5, :pool_timeout => 5)
MongoMapper.database =  cms 

module CmsMod
  class CmsApp < Sinatra::Base
    use Rack::Session::Cookie, :secret =>  something secret 
    use Rack::Flash

    get  /  do
      #redirect to( /list ) # commented out for testing
    end

    get  /private  do
      login_required
       Protected Page 
    end

其它的症状。 症状是将浏览器指向我的正常路线是好的。 前往/ 私人可以正确地将方向转向/ login, 但我得到的是旧的“ 辛那特拉不知道这个奇特的” 信息; 如果我试图直接访问/ login, 也是一样的。 我试图使用绑定. pry 来检查某块通道内的东西和从我所知道的路径上的东西。 任何关于原因的想法都会非常感激 。

问题回答

在查看了 < a href=> https://github.com/maxjustus/sinatra-audetication/blob/master/lib/sinatra-audetication.rb" rel=“nofolt”> librarys 源代码 之后,它作为一个扩展符写了下来,但示例和文件没有提到扩展的登记方式。 尝试一下 :

module CmsMod
  class CmsApp < Sinatra::Base
    register Sinatra::SinatraAuthentication  # <= this is the missing magic line.

我建议使用encripted_cookie 宝石。

use Rack::Session::Cookie, :secret =>  something secret 

改为:

use Rack::Session::EncryptedCookie, :secret =>  something secret 

所以如果你没有使用火腿(好像我用苗条), 你应该把火腿包括在你的工程中,

记得在您视图中设置布局, 因为默认情况下它将查找视图/ 布局 。 haml





相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Remotely authenticating client Windows user on demand

Suppose I am writing a server for a particular network protocol. If I know that the client is running on a Windows machine, is it possible for my server to authenticate the Windows user that owns the ...

Role/Permission based forms authorizing/authentication?

While looking into forms authorizing/authentication, I found that it is possible to do role based authorizing by adding an array of roles to a FormsAuthenticationTicket. That way I can write User....

热门标签