Zend 框架 Oauth 提供程序

2021-12-29 00:00:00 oauth php zend-framework oauth-provider

如何使用 Zend Framework 向 Web 应用程序添加 Oauth 提供程序?Zend Framework 支持 oauth 消费者,但我没有看到提供者支持.您使用什么在 php 中实现 Oauth 提供程序(使用 Zend 框架)?

How can I add a Oauth provider to a web application using Zend Framework? Zend Framework has support for oauth consumers, but I don't see a provider support. What do you use to implement a Oauth provider in php (with Zend Framework)?

推荐答案

我关注了 本指南来自 Rasmus Lerdorf 以实现 OAuth 提供程序.

I followed this guide from Rasmus Lerdorf to implement an OAuth provider.

虽然我实际上并没有使用 pecl 扩展,但您可以使用这篇文章来编写自己的服务器组件.

While I didn't actually use the pecl extension, you can use the article to write your own server component.

相关文章