안녕하세요
카카오톡 메세지로 링크를 보냈을때 나타나는 미리보기 이미지관련 질문입니다.
해당 URL로 imgurl을 보내서 해당 이미지를 meta og:image에
셋팅하는 방식으로 카카오톡 메세지를 보내고있는데 파라미터에 위와 같이 값이담긴 메세지를 보내게되면
아무런 미리보기가 생성되지않습니다
그런데 파라미터에 아무것도 안넣게되면 그나마 틀이라도 만들어집니다.
파라미터 값 받고 처리는 asp로 했습니다. 소스도 같이 첨부합니다
<% @CODEPAGE="65001" language="vbscript" %>
<% Option Explicit %>
<% session.CodePage = "65001" %>
<% Response.CharSet = "utf-8" %>
<% Response.buffer = True %>
<% Response.Expires = 0 %>
<%
Dim imgurl, today
today = CDate(Now)
imgurl = request("imgurl") & "?" & "AAA=" & today
If imgurl = "" Then
imgurl = "http://www.u815.co.kr/event/kakaotalk_img.png"
End if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="kor" lang="kor">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="텍스트">
<meta property="og:type" content="website">
<meta property="og:title" content="텍스트">
<meta property="og:description" content="텍스트">
<meta property="og:image" content="<%=imgurl%>"/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="627" />
<meta property="og:url" content="https://www.u815.co.kr">