Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Spotify は最近 API を変更したため、そのドキュメントは優れたものではありません。彼らのドキュメントによると、曲の現在の位置にアクセスするには、「models.player.position」にアクセスすると、未定義としてログに記録されます。
新しい Spotify API を使って曲の位置を取得した方が幸運だった人はいますか?
positionload関数を介して取得する必要がある属性です。
position
load
models.player.load('position') .done( function(p){ /* p.position stores the current position */ });