Skip to main content

Add KakaoTalk Channel

Adding KakaoTalk Channel

Redirects the user to add the KakaoTalk channel as a friend.

Official Documentation

You can add a KakaoTalk channel using the addChannel function.

export function addChannel(channelPublicId: string): Promise<void>
  • channelPublicId: The ID of the KakaoTalk channel to add.

Get KakaoTalk Channel Add URL

You can retrieve the URL for adding a KakaoTalk channel using the getAddChannelUrl function.

export function getAddChannelUrl(channelPublicId: string): Promise<string>
  • channelPublicId: The ID of the KakaoTalk channel to add.

Open KakaoTalk Channel Add URL in Browser

You can open the URL for adding a KakaoTalk channel in a browser using the openAddChannelUrl function.

export function openAddChannelUrl(channelPublicId: string): Promise<string>
  • channelPublicId: The ID of the KakaoTalk channel to add.