文件名称:oauth2服务器源代码
-
所属分类:
- 标签属性:
- 上传时间:2021-08-04
-
文件大小:87.06kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
PHP5.2 OAuth2服务器源代码,用于天猫精灵授权。
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : oauth2-server-php-php5.2-develop.zip 列表 oauth2-server-php-php5.2-develop/ oauth2-server-php-php5.2-develop/.gitignore oauth2-server-php-php5.2-develop/.travis.yml oauth2-server-php-php5.2-develop/LICENSE oauth2-server-php-php5.2-develop/README.md oauth2-server-php-php5.2-develop/composer.json oauth2-server-php-php5.2-develop/phpunit.xml oauth2-server-php-php5.2-develop/src/ oauth2-server-php-php5.2-develop/src/OAuth2/ oauth2-server-php-php5.2-develop/src/OAuth2/Autoloader.php oauth2-server-php-php5.2-develop/src/OAuth2/ClientAssertionType/ oauth2-server-php-php5.2-develop/src/OAuth2/ClientAssertionType/HttpBasic.php oauth2-server-php-php5.2-develop/src/OAuth2/ClientAssertionTypeInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/CompatibilityInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Controller/ oauth2-server-php-php5.2-develop/src/OAuth2/Controller/AuthorizeController.php oauth2-server-php-php5.2-develop/src/OAuth2/Controller/AuthorizeControllerInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Controller/ResourceController.php oauth2-server-php-php5.2-develop/src/OAuth2/Controller/ResourceControllerInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Controller/TokenController.php oauth2-server-php-php5.2-develop/src/OAuth2/Controller/TokenControllerInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Encryption/ oauth2-server-php-php5.2-develop/src/OAuth2/Encryption/JWT.php oauth2-server-php-php5.2-develop/src/OAuth2/GrantType/ oauth2-server-php-php5.2-develop/src/OAuth2/GrantType/AuthorizationCode.php oauth2-server-php-php5.2-develop/src/OAuth2/GrantType/ClientCredentials.php oauth2-server-php-php5.2-develop/src/OAuth2/GrantType/JWTBearer.php oauth2-server-php-php5.2-develop/src/OAuth2/GrantType/RefreshToken.php oauth2-server-php-php5.2-develop/src/OAuth2/GrantType/UserCredentials.php oauth2-server-php-php5.2-develop/src/OAuth2/GrantTypeInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Request.php oauth2-server-php-php5.2-develop/src/OAuth2/RequestInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Response.php oauth2-server-php-php5.2-develop/src/OAuth2/ResponseInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/ResponseType/ oauth2-server-php-php5.2-develop/src/OAuth2/ResponseType/AccessToken.php oauth2-server-php-php5.2-develop/src/OAuth2/ResponseType/AccessTokenInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/ResponseType/AuthorizationCode.php oauth2-server-php-php5.2-develop/src/OAuth2/ResponseType/AuthorizationCodeInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/ResponseTypeInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Scope.php oauth2-server-php-php5.2-develop/src/OAuth2/ScopeInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Server.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/ oauth2-server-php-php5.2-develop/src/OAuth2/Storage/AccessTokenInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/AuthorizationCodeInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/ClientCredentialsInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/ClientInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/JWTBearerInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/Memory.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/Mongo.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/Pdo.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/Redis.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/RefreshTokenInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/ScopeInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/Storage/UserCredentialsInterface.php oauth2-server-php-php5.2-develop/src/OAuth2/TokenType/ oauth2-server-php-php5.2-develop/src/OAuth2/TokenType/Bearer.php oauth2-server-php-php5.2-develop/src/OAuth2/TokenType/MAC.php oauth2-server-php-php5.2-develop/src/OAuth2/TokenTypeInterface.php oauth2-server-php-php5.2-develop/test/ oauth2-server-php-php5.2-develop/test/OAuth2/ oauth2-server-php-php5.2-develop/test/OAuth2/AutoloadTest.php oauth2-server-php-php5.2-develop/test/OAuth2/Controller/ oauth2-server-php-php5.2-develop/test/OAuth2/Controller/AuthorizeControllerTest.php oauth2-server-php-php5.2-develop/test/OAuth2/Controller/ResourceControllerTest.php oauth2-server-php-php5.2-develop/test/OAuth2/Controller/TokenControllerTest.php oauth2-server-php-php5.2-develop/test/OAuth2/GrantType/ oauth2-server-php-php5.2-develop/test/OAuth2/GrantType/AuthorizationCodeTest.php oauth2-server-php-php5.2-develop/test/OAuth2/GrantType/ClientCredentialsTest.php oauth2-server-php-php5.2-develop/test/OAuth2/GrantType/ImplicitTest.php oauth2-server-php-php5.2-develop/test/OAuth2/GrantType/JWTBearerTest.php oauth2-server-php-php5.2-develop/test/OAuth2/GrantType/RefreshTokenTest.php oauth2-server-php-php5.2-develop/test/OAuth2/GrantType/UserCredentialsTest.php oauth2-server-php-php5.2-develop/test/OAuth2/RequestTest.php oauth2-server-php-php5.2-develop/test/OAuth2/ResponseTest.php oauth2-server-php-php5.2-develop/test/OAuth2/ScopeTest.php oauth2-server-php-php5.2-develop/test/OAuth2/Serv
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.