我正在尝试构建一个API接口来访问以下内容https://api.unsplash.com/photos/HNCSCpWrVJA?client_id=//...//
我的API接口在jetpack compose中看起来像这样
@Singleton
interface PhotoViewApi {
@GET(value = "photos")
suspend fun searchPhotos(
@Query("client_id")client_id:String
): searchPhotos
}
由于我刚刚开始学习,我真的不知道如何从API接口操作照片ID“HNCSCpWrVJA”,我知道可以使用@Query
注解操作查询参数,在本例中,@Query
注解是API调用链接中?
之后的client_id
但我如何能够动态更改照片IDhttps://api.unsplash.com/photos/<---PHOTO_ID--->?client_id=//...//
从接口
1条答案
按热度按时间wfveoks01#
您可以使用
@Path
在您的url中传递照片ID