I'm working on implementing a WS client that can connect to an Android device via the Appium server as part of my effort to contribute to the .NET client.
So far, my main issue is that I'm unable to connect to the device with the WS Uri. in this format: ws://127.0.0.1:4723/ws/session/327c84e4-0ca9-4f11-867c-74a492388ff4/appium/device/logcat
I'm trying to use the following call, but I get a 404 error each time. System.Net.WebSockets.WebSocketException: 'Unable to connect to the remote server
I also tried connecting via 'websocat' but without success either.
I read somewhere that android is using wss://, but this approach also return an error:
websocat: WebSocketError: WebSocket SSL error: The token supplied to the function is invalid (os error -2146893048) websocat: error running
My question is if it's even possible to connect to an android logcat via WS to an android device on a windows machine.