tosher / Mediawiker

A plugin for Sublime Text editor that adds possibility to use it as Wiki Editor on MediaWiki-based sites like Wikipedia and many other.
Other
138 stars 27 forks source link

Connect Mediawiker to FANDOM? #159

Closed moose-again closed 4 years ago

moose-again commented 4 years ago

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": ""
}
tosher commented 4 years ago

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": "",
                        ...
moose-again commented 4 years ago

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