문의 시, 디벨로퍼스 앱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 입니다