Android retrofit2连接超时

时间:2017-09-03 15:58:59

标签: android retrofit2

我正面临一个问题,我想向Linkit 7697发送GET请求。

当我通过铬和邮递员请求时,它的工作非常完美。

以下是邮递员的快照

截图:

enter image description here

enter image description here

我认为请求不需要任何请求标头或正文,响应将是纯HTML文本/ html。

但我失败了,得到了以下日志

url(r'^i18n/', include('django.conf.urls.i18n')),

以下是我的Android代码:

D/OkHttp: --> GET http://192.168.0.7/F http/1.1
D/OkHttp: --> END GET
D/OkHttp: <-- HTTP FAILED: java.net.SocketTimeoutException: connect timed out

感谢您的时间:)

1 个答案:

答案 0 :(得分:0)

好的,我解决了。 我把双&#34; //&#34;。 一个是在baseUrl(http://192.168.0.7/)的末尾 另一个是在(@GET(&#34; / F&#34;))

的开头

谢谢大家!