summaryrefslogtreecommitdiff
path: root/lib/oauth.php
AgeCommit message (Collapse)Author
2015-09-20Fix #20 and #25: Add authorization header workaround for fcgidChristian Weiske
Apparently the "Authorization" header are passed into PHP as HTTP_XAUTHORIZATION instead of HTTP_AUTHORIZATION.
2014-10-08Fix bug #10: OAuth does not work on ovh.com serverChristian Weiske
This ovh.com server always has $_SERVER['HTTP_AUTHORIZATION'] set. By default it has an empty string as value, and this breaks the PHP OAuth extension - see https://bugs.php.net/bug.php?id=68168 We work around that by forcing the signature method in this special case, so that no exception is thrown. Thanks to Julien Daviaud for giving me access to his server for debugging.
2014-10-07Another fix for bug #10Christian Weiske
2014-10-06Try to fix issue #10; work around bug https://bugs.php.net/bug.php?id=68168Christian Weiske
2014-09-30store client name and last use time for tokens. show them in token managementChristian Weiske
2014-09-26Send HTTP 401 on invalid tokenChristian Weiske
2014-08-21make sync work with conboyChristian Weiske
2014-08-21Support oauth on apache+fastcgiChristian Weiske
2014-08-21use factory method for oauthproviderChristian Weiske
2014-08-18oauth dance worksChristian Weiske