Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
11–18 of 18 posts
Re: Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
#12Nice, is there a Wordpress plugin in the works? I'm sure that a lot of people would be interested in this.
That's definitely one of the top frameworks/CMS to support. I'll get on with it if no one has started when I'm done with CakePHP-Opauth and Opauth's documentations.
Re: Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
#13Re: Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
#14I really wish this was around 2 years ago when I made a site that used openid in PHP. I've dealt with so many nighmares of it I just threw it all away and now send people an email every time they want to log in. How do you deal with supporting every different little configuration of PHP servers? I had huge problems with having to put a hack into the code for lightopenid in order for it to work on my webhost, but that…
Yes, file_get_contents() is not that great, but strategy developers can choose to require cURL if they want, just that Opauth Core doesn't require it.
Re: Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
#15I really wish this was around 2 years ago when I made a site that used openid in PHP. I've dealt with so many nighmares of it I just threw it all away and now send people an email every time they want to log in. How do you deal with supporting every different little configuration of PHP servers? I had huge problems with having to put a hack into the code for lightopenid in order for it to work on my webhost, but that…
I set a minimum requirement of Opauth Core to be PHP >= 5.2 (though technically it runs fine on >= 5.0) and tries as best as I could to not introduce any unnecessary dependencies, which is the reason why cURL isn't bundled and basic HTTP calls are made through get_file_contents(); and hashing is done through iterations of salted sha1() instead of bundling 3rd party encryption scheme. Yes, file_get_contents() is not t…
Re: Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
#16Earlier quoted context omitted.
I set a minimum requirement of Opauth Core to be PHP >= 5.2 (though technically it runs fine on >= 5.0) and tries as best as I could to not introduce any unnecessary dependencies, which is the reason why cURL isn't bundled and basic HTTP calls are made through get_file_contents(); and hashing is done through iterations of salted sha1() instead of bundling 3rd party encryption scheme. Yes, file_get_contents() is not t…
I'm the developer of Requests ( https://requests.ryanmccue.info/ ) which might be something for you to consider bundling with Opauth. There's a whole host of problems with using file_get_contents on various hosts, hence why cURL is so often used.
Re: Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
#17I really wish this was around 2 years ago when I made a site that used openid in PHP. I've dealt with so many nighmares of it I just threw it all away and now send people an email every time they want to log in. How do you deal with supporting every different little configuration of PHP servers? I had huge problems with having to put a hack into the code for lightopenid in order for it to work on my webhost, but that…
I set a minimum requirement of Opauth Core to be PHP >= 5.2 (though technically it runs fine on >= 5.0) and tries as best as I could to not introduce any unnecessary dependencies, which is the reason why cURL isn't bundled and basic HTTP calls are made through get_file_contents(); and hashing is done through iterations of salted sha1() instead of bundling 3rd party encryption scheme. Yes, file_get_contents() is not t…
Re: Opauth: Multi-provider authentication framework for PHP, inspired by OmniAuth
#18Just released v0.1.0 today. https://github.com/uzyn/opauth If you are familiar with OmniAuth for Ruby, Opauth basically does the same thing, except for PHP. Gave a talk on it today at Singapore PHP User Group. My deck: https://speakerdeck.com/u/uzyn/p/opauth-an-introduction Opauth is still very new and I still need to work on the documentations a lot, especially tutorials and the wiki.
If so any differentiators that would help us choose?