问题:在Android Kotlin客户端中,使用Binance exchange提供的getCandlestickBars方法无法正常工作。可能是因为未加入适当的依赖库。应该添加以下依赖项:implementation 'com.squareup.retrofit2:converter-jackson:2.9.0'。同时,应该检查所使用的时间戳是否正确,并按照正确的方式组织调用。示例代码:val interval = 1m"val limit = 10val startTime = 1620858723000Lapi.getCandlestickBars("BTCUSDT", interval, limit, startTime).enqueue(object : Callback?> {override fun onResponse(call: Call
?>, response: Response
?>) {if (response.isSuccessful) {// Handle success} else {// Handle error}}})"