我正在使用Kotlin开发新闻源应用程序。
public interface NewsAPI {
@GET("v2/top-headlines")
fun getTooNews(
@Query("my_apiKey") String "apiKey");
)
}
这是通过查询参数添加
apiKey
的正确方法吗?https://square.github.io/retrofit/
最佳答案
否。使用apiKey:String而不是字符串“apiKey”。:)
关于kotlin - 改造查询参数添加apiKey,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52809237/