Hi I would like to update profile information of slack account using API. I used WebClient using user token, setting profile:write scope. I set Slack Bot subscribing slack events, but it only updated my profile. Whoever tried to update his/her profile, my(slack bot authorizer) profile updated. There is already user params in set method.
await client.users.profile.set({
user,
profile: {
status_emoji,
status_text,
} as any,
})