http://www.perlmonks.org?node_id=1017814


in reply to Net::Twitter - fatal , but no error?

The key and secret are not a Twitter username+password combo; they are an OAuth pair, and will be different from what you'd use to log into the Twitter website with your browser.

PS: have you tried enabling debugging in setup perchance?

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name