| Moxy documentation | Contained in the Moxy distribution. |
Moxy::Plugin::AuthorizationCutter
- module: AuthorizationCutter
do not send Authorization.
Sugano Yoshihisa(E)
| Moxy documentation | Contained in the Moxy distribution. |
package Moxy::Plugin::AuthorizationCutter; use strict; use warnings; use base qw/Moxy::Plugin/; sub request_filter: Hook { my ($self, $context, $args) = @_; $args->{request}->remove_header('Authorization'); } 1; __END__