sendMessage: (uuids, acessToken) => {
const param = {
receiver_uuids: uuids,
template_object: template
}
return new Promise((resolve, reject) => {
kApi.post(/v1/api/talk/friends/message/default/send
, qs.stringify(param), {
headers: {
‘Authorization’: Bearer ${acessToken}
,
‘Content-Type’: ‘application/x-www-form-urlencoded’
}
}).then((res) => {
resolve(res)
}).catch((err) => {
reject(err)
})
})
},
자꾸 receiver_uuids can’t be null 에러가 납니다
앱 ID는 877150 입니다
확인부탁드립니다