Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michal-josef-spacek/lwp-authen-oauth2-serviceprovider-mediawiki
MediaWiki OAuth2 provider for LWP::Authen::OAuth2.
https://github.com/michal-josef-spacek/lwp-authen-oauth2-serviceprovider-mediawiki
mediawiki-extension oauth2
Last synced: 16 days ago
JSON representation
MediaWiki OAuth2 provider for LWP::Authen::OAuth2.
- Host: GitHub
- URL: https://github.com/michal-josef-spacek/lwp-authen-oauth2-serviceprovider-mediawiki
- Owner: michal-josef-spacek
- License: bsd-2-clause
- Created: 2022-04-06T22:52:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T12:23:05.000Z (about 1 year ago)
- Last Synced: 2024-05-02T01:28:30.407Z (9 months ago)
- Topics: mediawiki-extension, oauth2
- Language: Perl
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
NAME
LWP::Authen::OAuth2::ServiceProvider::MediaWiki - Access MediaWiki using
OAuth2.SYNOPSIS
use package LWP::Authen::OAuth2::ServiceProvider::Foo;use base qw(LWP::Authen::OAuth2::ServiceProvider::MediaWiki);
use strict;
use warnings;sub authorization_endpoint {
return 'https://example.com/oauth2/authorize';
}sub token_endpoint {
return 'https://example.com/oauth2/access_token';
}1;
DESCRIPTION
See for MediaWiki
extension documentation.See page which is
for developers.Real implementation is LWP::Authen::OAuth2::ServiceProvider::Wikimedia
for Wikimedia meta OAuth2.DEPENDENCIES
Error::Pure, LWP::Authen::OAuth2::ServiceProvider.SEE ALSO
LWP::Authen::OAuth2
Make requests to OAuth2 APIs.LWP::Authen::OAuth2::ServiceProvider
ServiceProvider base classLWP::Authen::OAuth2::ServiceProvider::Wikimedia
Access Wikimedia using OAuth2.REPOSITORY
AUTHOR
Michal Josef Špaček
LICENSE AND COPYRIGHT
© Michal Josef Špaček 2022BSD 2-Clause License
VERSION
0.02