RockSmoke Member Dec 12, 2022 #1 hello everyone. I want to connect to my local http server. When I do it with webview, I can't connect to the server because it puts "http://" in front of it. how can I do
hello everyone. I want to connect to my local http server. When I do it with webview, I can't connect to the server because it puts "http://" in front of it. how can I do
DonManfred Expert Licensed User Longtime User Dec 12, 2022 #2 local on sight of android is the android device itself. You are running a http server on your android? How are you connecting to your http server? a http server must be called by http-protocol. http:// or https:// is the way to go. You can communicate to any http server using okhttputils2. Upvote 0
local on sight of android is the android device itself. You are running a http server on your android? How are you connecting to your http server? a http server must be called by http-protocol. http:// or https:// is the way to go. You can communicate to any http server using okhttputils2.
RockSmoke Member Dec 13, 2022 #3 DonManfred said: You are running a http server on your android? Click to expand... I installed http server in esp32 DonManfred said: How are you connecting to your http server? a http server must be called by http-protocol. http:// or https:// is the way to go. Click to expand... I installed it as http. Thank you for the answer. I will search Upvote 0
DonManfred said: You are running a http server on your android? Click to expand... I installed http server in esp32 DonManfred said: How are you connecting to your http server? a http server must be called by http-protocol. http:// or https:// is the way to go. Click to expand... I installed it as http. Thank you for the answer. I will search