B4A Question UserAndPasswordRequired event is never raised - arnold steger (first post)    Aug 29, 2020 i can understand the different login. cookie not return. i use only this website in my project.... B4i Question vkwebview and user auth - tufanv    Apr 25, 2019 Hello,
One of my pdf files is under .htaccess protect user auth. I need to use vkwebview instead of normal webview so that user can zoom into pdf. I am using this to provide user and password :
Sub WebView1_UserAndPasswordRequired (Host As String, Realm As String) As String()
Return Array As String("user", "pass)
End Sub
but I get, you don't have authorization error. What... B4i Question Webview Basic authentication - Blueforcer    Aug 24, 2023 i try to open a website wich has a basic http authentication. While in B4A i use WebView_UserAndPasswordRequired with success, this doesnt exist in B4i. So i switched to WKWebView and use: #if ObjC @end @interface B4IWKWebViewDelegate:NSObject <WKNavigationDelegate, WKUIDelegate> @end... *UrlCred = password:Cred persistence:NSURLCredentialPersistenceForSession];... WebView1_userandpasswordrequired(Url As String) never raises. i think it works once (not sure), but after that never... B4J Question B4J WebView Login Issue - Swissmade    Aug 5, 2014 In B4A you have a event Webview1_UserAndPasswordRequired when it comes to Login. I have not found this in the B4J version. Somebody any idea about this. Thanks... B4A Question Detect keypress regardless of focussed view - JdV (first post)    Jan 5, 2022 Thanks for the reply. Can you give me an example? The only events I can see for the standard webview are OverrideUrl, PageFinished and UserAndPasswordRequired.... B4A Question webview - elitevenkat    May 7, 2022 how to provide login id and password to a webview ?
i had tried this way
WebView1.LoadUrl("https://xxx.com")
Private Sub WebView1_UserAndPasswordRequired (Host As String, Realm As String) As String()
Log(Host & " host" & Realm & " - ")
Return Array As String("88988", "password")
End Sub
does not work.
any help?... B4A Question WebView - Erel (first post)    Mar 7, 2017   (1 reaction) You need to implement the UserAndPasswordRequired event:
Sub WebView1_UserAndPasswordRequired (Host As String, Realm As String) As String()
Return Array As String("username", "password")
End Sub
... B4A Library FlingableWebView - warwound    Oct 9, 2013   (9 reactions) As Float, Y As Float) As Boolean UserAndPasswordRequired (Host As String, Realm As String) As String...FlingableWebView A modified version of the b4a WebView that supports various gestures/fling events. For more info and some examples see this thread: http://www.b4x.com/android/forum/threads/get-left-or-right-swipe-from-panel-over-webview.32611/. Here's the documentation: FlingableWebView Version: 0.02 FlingableWebView Events: DoubleTap (X As Float, Y As Float) As Boolean Fling... B4A Question ESP8266 - ESP32 OTA Update from B4A WebView [SOLVED] - max123    Jan 26, 2022 = 0
End Sub
Sub WebView1_UserAndPasswordRequired (Host As String, Realm As String) As String()
ToastMessageShow(Host & " require Username and Password to access: " & Realm, True... used UserAndPasswordRequired sub to pass the username and password, after I added this It successfull... B4A Question Webview and authentication - Erel (first post)    Jun 16, 2014 Have you implemented the UserAndPasswordRequired event sub?... Page: 1   2   3   4   5   6   7   |