Nette PHP 框架和 RESTful API 带令牌身份验证

Nette PHP framework and RESTful API with token authentication

Nette PHP 框架是否适合在 PHP 中创建 RESTful API(对于客户端 JavaScript 应用程序),我找不到合适的文档分开 IAuthenticator

我很久以前就用过drahak/Restful。最后一次提交是 2 个月前,所以你应该没有任何问题。它为您提供了更高级的路由器、OAuth2 和其他工具来帮助您构建 API.

$router[] = new CrudRoute('api/v1/<presenter>/<id>/[<relation>[/<relationId>]]', 'Articles');

在 GitHub 上还有关于 #posobota. Sources from API workshop can be found in fprochazka/workshop-rest-api-sandbox 存储库的研讨会。

让我知道它是否适合您!

我目前正在使用 Nette-RestRoute。根据描述,它 "Automatically maps REST actions to Presenters and actions in the defined module." 用法非常简单,所以我会推荐它。