Home  >  Article  >  Backend Development  >  laravel 如何给app 应用做 api接口的验证/认证?

laravel 如何给app 应用做 api接口的验证/认证?

WBOY
WBOYOriginal
2016-06-06 20:30:441336browse

用户登录app 改如何做用户验证呢?

而app 用户 请求的http 协议, 后端传输数据的时候,如何给认证后的app 返回数据呢,

如果app 请求 后端api 接口 没有做认证,会不会遭到恶意的请求呢

回复内容:

用户登录app 改如何做用户验证呢?

而app 用户 请求的http 协议, 后端传输数据的时候,如何给认证后的app 返回数据呢,

如果app 请求 后端api 接口 没有做认证,会不会遭到恶意的请求呢

你说的app是指手机应用吗?app没有cookie,所以你要做的仅仅是让客户端实现一个cookie值的接受和传递。这样就能和web app一样使用验证了。或者你也可以用别的验证方式。

我的方式比较简单,先处理逻辑,最后echo json_encode($data);,与传统的方式一样啊,想知道你是什么想法。

laravel不是很了解,不过新版也应该有restful的支持吧?建议楼主看下官方文档.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn