首页 > 代码库 > 【OAuth2学习之路】Spring Security OAuth官网文档翻译

【OAuth2学习之路】Spring Security OAuth官网文档翻译

    现将开发文档翻译出来,因为看英文实在是比较吃力的。

    首先看下官方的指南Developers Guide,OAuth的两个版都都有。本文看的是OAuth2的开发指南。

    翻译如下:

Spring Security OAuth2开发指南(OAuth 2 Developers Guide)

        1、入门(Introduction)

        2、OAuth2.0提供程序(OAuth 2.0 Provider)

        3、OAuth2.0提供程序的实现(OAuth 2.0 Provider Implementation)

        4、授权服务器的配置(Authorization Server Configuration)

            4.1、配置客户端详情(Configuring Client Details)

            4.2、管理Tokens(Managing Tokens)

            4.3、授权类型(Grant Types)

            4.4、配置端点URL(Configuring the Endpoint URLs)

        5、自定义错误处理(Customizing the Error Handling)

        6、资源服务器配置(Resource Server Configuration)

            6.1、配置一个理解oauth表达式处理程序(Configuring An OAuth-Aware Expression Handler)

        7、OAuth2.0的客户端(OAuth 2.0 Client)

            7.1、配置受保护的资源(Protected Resource Configuration)

            7.2、客户端的配置(Client Configuration)

            7.3、访问受保护的资源(Accessing Protected Resources)

            7.4、持久化客户端的Tokens(Persisting Tokens in a Client)

        8、为客户端定制的外部OAuth2提供者(Customizations for Clients of External OAuth2 Providers)


        先列一个目录,待续…………


【OAuth2学习之路】Spring Security OAuth官网文档翻译