I am working with Laravel 4 attempting to build a REST API. I have to create a resourceful controller, model, and associated views for managing multiple api consumers. I want each api consumer to (at a minimum) have attributes for api_key and shared_secret. I have been reading Jeremy Kendall's page on Query Auth @ http://jeremykendall.net/2013/08/13/api-query-authentication-with-query-auth/. I am getting very confused. I do not understand where everything should go.
相关问题
- Laravel Option Select - Default Issue
- Design RESTful service with multiple ids
- Axios OPTIONS instead of POST Request. Express Res
- Plain (non-HTML) error pages in REST api
- Laravel 5.1 MethodNotAllowedHttpException on store
相关文章
- 我用scrapy写了一个蛮简单的爬虫怎么封装成一个api啊
- 后端给前端的API接口是怎么用代码写的
- laravel create model from custom stub when using p
- send redirect and setting cookie, using laravel 5
- How to send parameters to queues?
- Convert C# Object to Json Object
- Bcrypt vs Hash in laravel
- Laravel: What's the advantage of using the ass
I'd suggest you to watch the What’s New in Laravel 4 series before doing any commando action.
Here's a tutorial on user authentication: https://medium.com/on-coding/e8d93c9ce0e2
Here's one on ACL: https://medium.com/on-coding/a7f2fa1f9791
And here's one on REST API's in L4: https://medium.com/on-coding/c643022433ad