Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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