Catalyst-Authentication-Credential-Twitter

 view release on metacpan or  search on metacpan

README.mkdn  view on Meta::CPAN

    }

    # etc
}
```

# SEE ALSO

[Catalyst::Plugin::Authentication](https://metacpan.org/pod/Catalyst::Plugin::Authentication), [Net::Twitter](https://metacpan.org/pod/Net::Twitter)

# BUGS AND LIMITATIONS

`Catalyst::Authentication::Credential::Twitter` works well 
with [Catalyst::Authentication::Store::DBIx::Class](https://metacpan.org/pod/Catalyst::Authentication::Store::DBIx::Class), but might 
have problem with other stores, as its `authenticate()` method uses

```perl
$realm->find_user({
    twitter_user_id => $authenticated_twitter_id
}, $c);
```

lib/Catalyst/Authentication/Credential/Twitter.pm  view on Meta::CPAN

            $user = $self->model->create_user( $twitter->twitter_user($c) );
        }

        # etc
    }

=head1 SEE ALSO

L<Catalyst::Plugin::Authentication>, L<Net::Twitter>

=head1 BUGS AND LIMITATIONS

C<Catalyst::Authentication::Credential::Twitter> works well 
with L<Catalyst::Authentication::Store::DBIx::Class>, but might 
have problem with other stores, as its C<authenticate()> method uses

    $realm->find_user({
        twitter_user_id => $authenticated_twitter_id
    }, $c);

to find the user. If this causes a problem for your store, 



( run in 0.512 second using v1.01-cache-2.11-cpan-4d50c553e7e )