| line | stmt | bran | cond | sub | pod | time | code | 
| 1 | 1 |  |  | 1 |  | 474 | use strict; use warnings; | 
|  | 1 |  |  | 1 |  | 2 |  | 
|  | 1 |  |  |  |  | 39 |  | 
|  | 1 |  |  |  |  | 5 |  | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 38 |  | 
| 2 |  |  |  |  |  |  |  | 
| 3 |  |  |  |  |  |  | package Net::OAuth2Server::Request::Token::AuthorizationCode; | 
| 4 | 1 |  |  | 1 |  | 6 | use parent 'Net::OAuth2Server::Request'; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 4 |  | 
| 5 |  |  |  |  |  |  |  | 
| 6 | 0 |  |  | 0 | 0 |  | sub grant_type { 'authorization_code' } | 
| 7 | 0 |  |  | 0 | 0 |  | sub allowed_methods { 'POST' } | 
| 8 | 0 |  |  | 0 | 0 |  | sub grant_parameters { qw( code redirect_uri client_id client_secret ) } | 
| 9 |  |  |  |  |  |  | *required_parameters = \&grant_parameters; | 
| 10 |  |  |  |  |  |  |  | 
| 11 |  |  |  |  |  |  | sub get_grant { | 
| 12 | 0 |  |  | 0 | 0 |  | my ( $self, $grant_maker ) = ( shift, shift ); | 
| 13 | 0 | 0 |  |  |  |  | return if $self->error; | 
| 14 | 0 |  |  |  |  |  | $grant_maker->from_auth_code( $self, $self->params( $self->grant_parameters ), @_ ); | 
| 15 |  |  |  |  |  |  | } | 
| 16 |  |  |  |  |  |  |  | 
| 17 |  |  |  |  |  |  | our $VERSION = '0.005'; |