> For the complete documentation index, see [llms.txt](https://docs.dfinery.ai/developer-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dfinery.ai/developer-guide/platform/ios/action/alimtalk.md).

# 알림톡

## 유저 식별 정보 설정 <a href="#set-identity" id="set-identity"></a>

알림톡 발신을 위해 [유저 식별 정보](/developer-guide/platform/ios/identity.md) 중 카카오 ID를 설정해 주세요.

예시코드

{% tabs %}
{% tab title="Swift" %}

```swift
Dfinery.shared().setIdentity(key: DFIdentity.KAKAO_USER_ID, value: "KAKAO_ID")
```

{% endtab %}

{% tab title="Objective-C" %}

```objective-c
[[Dfinery shared] setIdentityForKey:DFIdentity.KAKAO_USER_ID value:@"KAKAO_ID"];
```

{% endtab %}
{% endtabs %}
