- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的新项目中,我想使用 webmachine 和 mochiweb。我想做的第一件事是身份验证。
我编辑“dispatch.conf”并制作一些资源,例如:
{["auth"], my_res_auth, []}.
{["protected"], my_res_protected, []}.
{['*'], my_res_default, []}.
is_authorized(ReqData, State) ->
case my_auth:is_authorized(ReqData) of
true -> {true, ReqData, State};
false ->
% here should be something to redirect user to "auth" resource
% currently i put such thing, which is incorrect:
{true, wrq:do_redirect(true, wrq:set_resp_header("location", "/auth", ReqData)), State}
% dont know what should i put instead of "true"
end.
最佳答案
我想我找到了正确的方法,将此代码放入 auth.hrl 文件并将其包含在我的资源中
is_authorized(ReqData, State) ->
case my_auth:is_authorized(ReqData) of
true -> {true, ReqData, State};
false ->
% there i got address, to which should i redirect
% this address is defined in dispatch.conf
% and walk trough my_res_protected:init/1 into State
case proplists:get_value(do_redirect, State, false) of
false ->
{{halt, 401}, wrq:set_resp_header(
"Content-type", "text/plain",
wrq:set_resp_body("NOT AUTHORIZED", ReqData)
), State};
Location ->
{{halt, 302}, wrq:set_resp_header("Location", Location, ReqData), State}
end
end.
关于erlang - webmachine 和重定向未经身份验证的用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7682963/
在我的新项目中,我想使用 webmachine 和 mochiweb。我想做的第一件事是身份验证。 我编辑“dispatch.conf”并制作一些资源,例如: {["auth"], my_res_au
我正在尝试学习如何编写 Erlang Webmachine 资源。一个资源引发错误,但我无法追踪到它。崩溃报告中的错误消息没有提供足够的信息。 有没有办法在 Erlang shell 中测试这些功能?
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 8年前关闭。 Improve thi
Webmachine 似乎是构建 REST Web 服务的绝佳系统,但我知道它不提供 websocket 兼容性。我的问题很简单:在使用 webmachine 构建的 web 服务之上添加 webso
有没有好心人能告诉我如何编写或指向一个简单的 Webmachine 请求来处理 POST 请求;例如由类似的东西提交: Username: 非常感谢, 本地资源计划 最佳答案
在我的 Webmachine 应用程序中,我一直在思考 Redis 的使用问题一个星期。我还没有开悟。 我将使用 Eredis,这是一个使用示例: {ok, Con} = eredis:start_l
如果没有人将用 Erlang (http://wiki.basho.com/Webmachine.html) 编写的 Basho WebMachine 工具包移植到 Java,我会感到很惊讶,但我似乎
两个EWGI和 Webmachine在 Erlang 中提供 HTTP 的抽象。我想知道他们方法的关键概念差异是什么? 最佳答案 EWGI 为 HTTP 中间件提供了一个抽象的位置,并且基本上对任何比
我是一名优秀的程序员,十分优秀!