...
코드 블럭 | ||
---|---|---|
| ||
import KakaoGameTube import KakaoGameTubeKakao // Display the view to set the KakaoTalk game message reception settings KGTKakaoTalk.showSetting { error, isAllowedMe in if error.isSuccess { // Successfully set the KakaoTalk game message reception settings let isAllowedMe = isAllowedMe // Whether message reception is allowed } else if error.code == KGTErrorCode.notKakaoTalkUser { // The logged-in user is not a 'KakaoTalk' user. This occurs when the user is only registered with KakaoStory and not KakaoTalk. } else { // Failed to set the KakaoTalk game message reception settings } }) |
Retrieve KakaoTalk Profile
...
발췌문 삽입 | ||||||||
---|---|---|---|---|---|---|---|---|
|
코드 블럭 | ||
---|---|---|
| ||
import KakaoGameTube import KakaoGameTubeKakao // Display the view to set the KakaoTalk game message reception settings KGTKakaoTalk.showSetting { error, isAllowedMe in if error.isSuccess { // Successfully set the KakaoTalk game message reception settings let isAllowedMe = isAllowedMe // Whether message reception is allowed } else if error.code == KGTErrorCode.notKakaoTalkUser { // The logged-in user is not a 'KakaoTalk' user. This occurs when the user is only registered with KakaoStory and not KakaoTalk. } else { // Failed to set the KakaoTalk game message reception settings } }) |
...
Retrieve KakaoTalk Game Friend List
발췌문 삽입 | ||||||||
---|---|---|---|---|---|---|---|---|
|
...