how to authenticate RESTful API in Laravel 5?

2020-03-08 12:11发布

How to authenticate RESTful API in Laravel 5? I am using Laravel 5 to build a RESTful API & I want to use those API for mobile application.

I have also seen http://laravel.com/docs/5.0/authentication but not getting any related example so,please provide me sample example or appropriate link for authenticate RESTful API in Laravel 5.

2条回答
乱世女痞
2楼-- · 2020-03-08 12:41

I was looking for the same answer and I found this link very useful with detailed information and usage for L5 with the use of JWT .

JSON Web Token

Hope it helps you too.

查看更多
Viruses.
3楼-- · 2020-03-08 12:43

The Concept to use here would be Middleware: To get you started, put this in your API-Controller's ctors:

public function __construct()
{
    // reqires Authentificataion before access
    $this->middleware('auth.basic');
}

Your app should then be able to call the resources like

http://user:pass@yourapp.com/yourresource/1
查看更多
登录 后发表回答