当尝试发送请求以解析服务器时,它通常可以工作,但是对于S9设备,我收到I / O失败错误消息。当设备上没有互联网连接时,通常会出现此消息。但是,我确保手机已连接到互联网,并尝试使用wifi和4G。
解析服务器版本:3.1.3 android解析:1.18.5
答案 0 :(得分:0)
Parse.initialize(new Parse.Configuration.Builder(this)
.applicationId("")
.clientKey("")
.server("https://thisisatest.herokuapp.com/parse/") // https instead of http
.build()
);
在服务器网址中使用https代替http可以解决此问题。