Fetch the authenticated user's own activities (uploads, reposts by the user).
OAuth access token
Optional
Maximum number of activities per page
Activities response
When the API returns an error
import { getMeActivitiesOwn } from 'soundcloud-api-ts';const activities = await getMeActivitiesOwn(token, 25);activities.collection.forEach(a => console.log(a.type)); Copy
import { getMeActivitiesOwn } from 'soundcloud-api-ts';const activities = await getMeActivitiesOwn(token, 25);activities.collection.forEach(a => console.log(a.type));
https://developers.soundcloud.com/docs/api/explorer/open-api#/me/get_me_activities_all_own
Fetch the authenticated user's own activities (uploads, reposts by the user).