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.
我似乎找不到编辑<sharing>曲目属性的方法。甚至可能吗?
<sharing>
如果没有,您能建议一种安排曲目发布的方法吗?
非常感谢
这可以通过PUT对轨道资源的请求来实现。这是一个使用 curl 的示例:
PUT
curl -X PUT "https://api.soundcloud.com/tracks/<track_id>" -d"oauth_token=YOUR_TOKEN" -d"track[sharing]=public"
显然替换<track_id>为您的实际轨道 ID 和YOUR_TOKEN您的访问令牌。该track[sharing]属性可以是private或public。
<track_id>
YOUR_TOKEN
track[sharing]
private
public