Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ap/net-oauth2server-tokenexchange
A Token Exchange extension for Net::OAuth2Server
https://github.com/ap/net-oauth2server-tokenexchange
oauth2 perl token-exchange tokenexchange
Last synced: 4 days ago
JSON representation
A Token Exchange extension for Net::OAuth2Server
- Host: GitHub
- URL: https://github.com/ap/net-oauth2server-tokenexchange
- Owner: ap
- Created: 2020-12-17T07:14:15.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T22:03:21.000Z (over 2 years ago)
- Last Synced: 2024-11-06T03:03:59.285Z (about 2 months ago)
- Topics: oauth2, perl, token-exchange, tokenexchange
- Language: Perl
- Homepage: https://metacpan.org/release/Net-OAuth2Server-TokenExchange
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- 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::TokenExchange;
our $VERSION = '0.004';use Net::OAuth2Server::Request::Token::TokenExchange ();
package Net::OAuth2Server::Response::Role::TokenExchange;
our $VERSION = '0.004';use Role::Tiny;
use Class::Method::Modifiers 'fresh';sub fresh__add_issued_token_type { shift->add( issued_token_type => @_ ) }
fresh add_issued_token_type => \&fresh__add_issued_token_type;
undef *fresh__add_issued_token_type;1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Net::OAuth2Server::TokenExchange - A Token Exchange extension for Net::OAuth2Server
=head1 DISCLAIMER
B
For that reason, no documentation is provided.=head1 DESCRIPTION
A simple implementation of OAuth 2.0 Token Exchange.
=head1 SEE ALSO
=over 2
=item *
L8693, I|https://www.rfc-editor.org/rfc/rfc8693.html>
=back
=cut