Push api data 전송방법

문의 시, 디벨로퍼스 앱ID를 알려주세요.


// [A] 안드로이드 (FCM)
'for_fcm' => [
    'priority'     => 'high',
    'notification' => [
        'title' => $snd_data['title'] ?: '',
        'body'  => $snd_data['content'],
        'content_available' => true,
    ],
    'data' => [
        'url'       => (string)"/mypage",
        'push_code' => (string)($push_code ?? ''), // null이면 빈 문자열로
        'type'      => 'deep_link'
    ]
],

url을 어떻게 담아서 보낼수 있을까요?? php 입니다

안녕하세요. 확인을 위해 앱 ID 부탁드립니다.

앱ID
https://developers.kakao.com/ 의 내 애플리케이션>앱 설정>대시보드 : 상단에 있는 앱 ID
숫자로된 ID 입니다
ex) 123456

[@tim.l @woody.ho]