我正在尝试将数据发送到url并单击按钮来检索响应。但是,当我单击该按钮时,几秒钟后收到此错误“ com.android.volley,NoConnectionError:javax.net.ssl.SSLHandshakeException:java.security.cert.CertPathValidatiorException:找不到证书路径的信任锚” 下面是我的代码。请注意,发送到url时,需要从头文件“ bauth_key”派生的授权密钥。我恳请必要的帮助。
float radius = getResources().getDimension(R.dimen.my_corner_radius);
cardView.setShapeAppearanceModel(
cardView.getShapeAppearanceModel()
.toBuilder()
.setTopLeftCorner(CornerFamily.ROUNDED,radius)
.setTopRightCorner(CornerFamily.ROUNDED,radius)
.setBottomRightCornerSize(0)
.setBottomLeftCornerSize(0)
.build());