每当我尝试用Retrofit创建请求时,它都会失败。奇怪的是,它以前工作正常,我没有修改任何代码。现在几个月后,它不再工作了。我得到了以下错误:IllegalArgumentException: Unable to create @Body converter for class apis.Config (parameter #2)
我试着从Gson改为莫希,但没有解决问题。我还搜索了Stackoverflow,发现人们也有类似的问题,但解决方案似乎对我不起作用,因为它们主要是关于重复的SerializedNames,而在我的代码中不是这样。
API服务
interface ApiService {
@Headers(
"Content-Type: application/json"
)
@POST("api")
fun getActivityInvite(@Path("voiceChannelId") voiceChannelId: String, @Body body: Config, @Header("Authorization") authorization: String): Call<ActivityInvite>
}
配置类
data class Config(@SerializedName("target_application_id") val targetApplicationId: String){
@SerializedName("max_age")
val maxAge = 86400
@SerializedName("max_uses")
val maxUses = 0
@SerializedName("target_type")
val targetType = 2
@SerializedName("temporary")
val temporary = false
@SerializedName("validate")
val validate = null
}
API类别
class Api {
private val retrofit: Retrofit = Retrofit.Builder().baseUrl(BASE_URL).addConverterFactory(GsonConverterFactory.create()).build()
private val apiService: ApiService = retrofit.create(ApiService::class.java)
private val props: Properties = PropertiesUtil.getProperties("project.properties")
fun getActivityInvite(voiceId: String, activityId: String): String?{
val config = Config(activityId)
val request = apiService.getActivityInvite(voiceId, config, "Bot ${props.getProperty("bot_token")}")
val response = request.execute()
return response.body()?.getInviteUrl()
}
}
1条答案
按热度按时间ppcbkaq51#
所以我找到了问题的解决方案。很明显,这个问题是由我使用OpenJDK 16某些带有反射的东西引起的。我通过在运行代码时使用JVM参数
--illegal-access=permit
解决了这个问题。这个解决方案不是最优的,但它是有效的。