Merb 身份验证问题,_message 变量
我使用 merb,并在身份验证后在 url 中获取奇怪的变量。 我发现该变量包含 base64 编码数据,但无法理解为什么它出现在那里,即使一切正常。 只是好奇
它看起来像这样: http://foo.bar/?_message=... .数据.... 这个变量的用途和作用是什么?
Im using merb, and getting weird variable in url after authentication. I figured out that variable contains base64 encoded data, but cannot understand why its appearing there, even if everything works ok. Just curious
It looks like this: http://foo.bar/?_message=....data....
What this variable for and what does it do ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
_message 是 Merb 发送“flash”消息的方式。 我相信它被编码以使其更难欺骗(即在网页上插入任意文本),但将状态保留在 URL 中
_message is the way that Merb sends 'flash' messages. I believe that it is being encoded to make it harder to spoof (i.e. insert arbitrary text on your Web page) but to keep the state in the URL