我正在学习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发出令牌请求。任何帮助将不胜感激!