your post referred to "WebView +
WebViewExtras PostUrl"
where is
posturl in your code? webview.
loadurl is not the
same as posturl. if you have to post your login
credentials, you need posturl. it will post your login.
whether or not something else may be required, i cannot
say at this time. start with posturl. do you know how to use it?
it's in
webviewextras 2. it is not supported in
1.42
it will look something like this:
Dim data() As Byte = "username=user&password=pass".GetBytes("UTF8")
webviewextras.PostUrl("https://medieval-europe.eu/index.php/user/login", data)
the url you show may or may not be the url which expects posted data. a login usually
is interactive and points to an action which expects posted form data. you need to use
a url which expects posted data. i took a quick look at the url and its source. it is interactive
and it also appears to be the same url which accepts posted data, so it might work.
(i show UTF8, but the server could expect base64. i don't know.) you'll have to work with it.
i've used posturl on servers. if you send them exactly what they want, it works no problem.