用于PHP的Oauth 2.0服务器和请求库

时间:2016-07-20 07:35:35

标签: php codeigniter curl oauth

我正在学习Oauth 2.0库。 我读了一些关于Oauth 2.0 Server here

的内容

在我在github.com/grasses/codeigniter-oauth2-server

中为CodeIgniter寻找Oauth 2.0服务器之后

我需要它来模拟在包含一些api的服务器中获取访问权限。我在命令行中模拟了这个:

curl -u testclient:testpass http://localhost/token.php -d 'grant_type=client_credentials'

获得令牌后,我运行此命令以获取资源访问权限:

curl http://localhost/resource.php -d 'access_token=MY_TOKEN'

响应还可以,我可以访问该资源。

我需要的只是知道是否存在一种实现客户端请求的方法,Requests library向Oauth 2.0 Server发出令牌请求。任何帮助将不胜感激!

0 个答案:

没有答案