Replies: 4 comments 3 replies
-
v3인가요 v4인가요? |
Beta Was this translation helpful? Give feedback.
2 replies
-
Type 관련 Struct Property를 체크해보시기 바랍니다. |
Beta Was this translation helpful? Give feedback.
0 replies
-
TalkOpenChannel 객체에서 유저 정보를 가져오면 perm 속성을 통해 권한을 확인 할 수 있습니다. |
Beta Was this translation helpful? Give feedback.
1 reply
-
function kakaotalkMessageCallback(data,channel){
const sender = data.getSenderInfo(channel);
if (!sender) {
return;
}
if(sender.perm === OpenChannelUserPerm.MANAGER ||
sender.perm === OpenChannelUserPerm.OWNER){
//
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
메세지를 받아오면서 이사람이 왕관(부방장,방장) 인 사람인지
체크를 하고싶은데 가능한가요 ?
Beta Was this translation helpful? Give feedback.
All reactions