카카오톡 링크시 og:image 관련

안녕하세요

카카오톡 메세지로 링크를 보냈을때 나타나는 미리보기 이미지관련 질문입니다.

http://www.u815.co.kr/Main/?acguid=9ec0c097-5d43-e611-80f6-3863bb2eca10&imgurl=https://api.u815.co.kr:28888/sinic103/1298c9f262c177b35ab472371ee234d61467799455806.jpeg

해당 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">

소스코드에 아래와 같이 되어 있는데요. 저렇게 설정하시면 저 url로 이동해서 meta태그를 다시 읽습니다.
우선 아래 코드부터 수정하셔야 될 것 같아요.

 <meta property="og:url" content="https://www.u815.co.kr">