메시지 권한 api

이미 가입을 한 회원이 추가로 "메시지 전송 허용"을 할 수 있는 api가 있나요?
추가로 허용한 회원이 취소도 가능한가요?

1개의 좋아요

Hello @김용8330

Yes, there is an API to get message permissions later for existing users:

Kakao.Auth.updateScopes({
scopes: ['talk_message'],
success: function(response) {
// Permission successfully obtained
},
fail: function(error) {
// Permission could not be obtained 
}
});
  1. For revocation of permissions:
  • Users can revoke permissions from Kakao account settings
  • Permission cannot be revoked directly from the developer side with the API
  • Revocation of permissions is under the user’s own control

To check the current status of permissions:

Kakao.API.request({
url: '/v2/user/scopes',
success: function(response) {
// Check permission status (Yetkileri kontrol et)
}
});

추가항목 동의 받기로 동의 받을 수 있습니다.

카카오 계정 관리 페이지에서 개별 동의 철회 가능하며 동의 철회하기 API로도 철회 가능합니다.

Unlink API 호출 또는 카카오 계정 관리 페이지에서 연결끊기로도 전체 동의 철회 가능합니다.