I read the doc and try to get all the activities of a user(not the user self), but the returned json is
{
"detail":"You don't have permission to do this",
"status_code":403,
"code":17,
"exception":"NotAllowedException",
"duration":"0.13ms"
}
This is the code I am using,
let feed = Client.shared.flatFeed(feedSlug: "public", userId: "7YZSZNpYOMU2GyRcxS1x152loPW2")
feed.get() { result in
try? result.get().results
}
I'm wondering if it is possible to get all activities of another user. Thanks for any help!