Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ap/net-oauth2server
A light, simple, flexible OAuth2 server framework
https://github.com/ap/net-oauth2server
oauth2 oauth2-server perl
Last synced: 1 day ago
JSON representation
A light, simple, flexible OAuth2 server framework
- Host: GitHub
- URL: https://github.com/ap/net-oauth2server
- Owner: ap
- Created: 2020-05-30T16:43:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T21:23:10.000Z (about 2 years ago)
- Last Synced: 2024-10-11T21:15:50.575Z (26 days ago)
- Topics: oauth2, oauth2-server, perl
- Language: Perl
- Homepage: https://metacpan.org/release/Net-OAuth2Server
- Size: 40 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
- Changelog: Changes
Awesome Lists containing this project
README
use strict; use warnings;
package Net::OAuth2Server;
our $VERSION = '0.006';__END__
=pod
=encoding UTF-8
=head1 NAME
Net::OAuth2Server - A light, simple, flexible OAuth2 server framework
=head1 DISCLAIMER
B
For that reason, no documentation is provided.=head1 DESCRIPTION
A server-side OAuth2 framework with the following aims:
=over 2
=item Well designed for direct use as-is within a web application:
Application programmers should have a reasonable abstraction to build on
so they can fill in the specifics of their application
without having to reimplement significant parts of the protocol anyway.=item Extensible enough as a framework to implement any OAuth2 extension:
It should be possible to implement any OAuth2 extension
such that it can easily be shipped as a CPAN module.=item Independent from specific web frameworks:
It should not be necessary to reimplement OAuth2 as a plugin or extension
for every single framework.=item Frugal in dependencies and means of implementation:
OAuth2 is not deep or clever technology, it is glue.
There is no need for anything deep or clever in an implementation of it.=back
=head1 SEE ALSO
This is a very distant descendant of the server portion of L.
=cut