tosher/Mediawiker

Connect Mediawiker to FANDOM?

moose-again opened this issue · 2 comments

Greetings, Is there any way I can connect mediawiker to a fandom site? e.g. logos.fandom.com.
I have tried this, but it doesn't work

"Logopedia": {
    "domain": "",
    "host": "logos.fandom.com",
    "https": false,
    "pagepath": "/wiki/",
    "password": "",
    "path": "/",
    "username": ""
}

I think key moment is https...

Works fine for me with:

		"logos.fandom.com":
		{
			"authorization_type": "login",
			"domain": "",
			"host": "logos.fandom.com",
			"https": true,
			"pagepath": "/wiki/",
			"password": "pa$$W0Rd",
			"path": "/",
			"username": "Username"
		},

Other way - using cookies from your browser (you must sign-in in browser before):

			"authorization_type": "cookies",
			"cookies_browser": "firefox",
                        "password": "",
			"username": "",
                        ...

You're right, https fixed it. Thank you.