Iam building a simple Soundcloud API app for myself. I did some research for reposts with API and I figured out that I can only repost tracks with the API but not retrieve them. Is that correct?
What I want to achieve: Get all Reposted Tracks from a specific username/user_id of soundcloud.
Is it possible to get this information? The code to repost a track is:
$repost = json_decode($soundcloud->put('e1/me/track_reposts/<track-id>'), true); // do repost //
I hope someone can help me