Is there some code out there (under BSD or similar license preferably) that implements provider support for OAuth without needing PECL OAuth extension? Zend Framework's Zend_Oauth is pretty good, but it is only the consumer side. So I wonder if there's something like that but for doing the other side (i.e. making OAuth server).

Note that I'm not looking for how to do that with pecl/oauth - this I already have, see for example, Set up a PHP OAuth Provider - but unfortunately not all people can install PECL extensions, so I'm looking for some solution that would reduce requirements.

link|improve this question

This is not a duplicate! I specifically asked for pure PHP solution, and the linked question discusses PECL solution and asks how to implement the provider, while I know how to implement a provider using PECL solution, but looking for other solution in pure PHP. Those are completely different questions and I specifically noted it in the question! – StasM May 23 '11 at 23:42
feedback

2 Answers

up vote 3 down vote accepted

Have you taken a look at http://pear.php.net/package/HTTP_OAuth/?

link|improve this answer
I'll check it out, thanks. – StasM May 22 '11 at 8:12
feedback

I've ended up making some implementation for Oauth provider for Zend Framework, which can be seen here: https://github.com/smalyshev/Zend_OAuth_Provider

I'll improve it if time permits but it works for me right now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.