Post a comment on a track.
OAuth access token
The track's numeric ID or URN
The comment text
Optional
Position in the track in milliseconds where the comment is placed
The created comment object
When the API returns an error
import { createTrackComment } from 'soundcloud-api-ts';const comment = await createTrackComment(token, 123456, 'Great drop!', 60000);console.log(comment.id); Copy
import { createTrackComment } from 'soundcloud-api-ts';const comment = await createTrackComment(token, 123456, 'Great drop!', 60000);console.log(comment.id);
https://developers.soundcloud.com/docs/api/explorer/open-api#/tracks/post_tracks__track_id__comments
Post a comment on a track.