Seek To Position
me().player().seekToPosition(PlayerSeekToPositionParamsparams, RequestOptionsrequestOptions = RequestOptions.none())
PUT/me/player/seek
Seeks to the given position in the user’s currently playing track. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
Parameters
Seek To Position
package dev.cjav.spotted.example
import dev.cjav.spotted.client.SpottedClient
import dev.cjav.spotted.client.okhttp.SpottedOkHttpClient
import dev.cjav.spotted.models.me.player.PlayerSeekToPositionParams
fun main() {
val client: SpottedClient = SpottedOkHttpClient.fromEnv()
val params: PlayerSeekToPositionParams = PlayerSeekToPositionParams.builder()
.positionMs(25000L)
.build()
client.me().player().seekToPosition(params)
}