카카오 공유하기 기능을 리액트에서 구현하고 있습니다.
로컬에서는 정상 동작하는데 S3에 배포하면 title값과 volunteerImage 값이 잘못되었다는 에러가 뜹니다.
오늘 배포날인데 제발 도와주세요! ㅠㅠ
const { title, volunteerImage, volunteerId } = getVolunteerInfoData;
...
kakao.Share.createDefaultButton({
container: "#kakaotalk-sharing-btn",
objectType: "feed",
content: {
title: title,
description: "봉사 같이 할래? 좀나세에서 다양한 봉사를 신청해보세요.",
imageUrl: volunteerImage,
link: {
// webUrl: `웹 배포 주소`,
webUrl: `http://localhost:3000`,
},
},
buttons: [
{
title: "웹으로 보기",
link: {
webUrl: `웹 배포 주소`,
},
},
],
});