我想通過一個GET請求發送查詢意外的主機,可問題是我不斷收到java.lang.IllegalArgumentException: unexpected host
與OkHttp
HttpUrl url = new HttpUrl.Builder()
.scheme("http")
.host("10.0.2.2" + "/api/" + 7) // This is where the error is coming in
.addQueryParameter("lat", deviceLat[0])
.addQueryParameter("long", deviceLong[0])
.build();
Request request = new Request.Builder()
.url(url)
.build();
感謝所有幫助:)
您使用的是wamp服務器嗎? – akhilesh0707
@Akhilesh Patil nope,使用docker,我知道這個url是正確的,因爲我從那裏得到了任何疑問的信息。 – TheMysticalWarrior
您是使用模擬器還是設備? – akhilesh0707