That iframe is not generated by App Engine, it appears to be generated by GoDaddy.
Hello,
I am using GAE as a landing page for my app (to be developed on GAE soon after)
I am trying to add social button (twitter, G+, facebook like)
It turns out for the FB like, I need to enter open graph tags in the html-head
To my surprise, my GAE templates are running in a <frame> of an GAE-autogenerated html document.
So the FB like button tries to access the open graphs tags in the wrong html-head, i.e. it looks at the GAE-autogenerated head.
1/ How can I edit the GAE http-head
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Reciprocity-Ring </title>
<meta name="description" content="Description">
<meta name="keywords" content="Keywords">
</head>
<frameset rows="100%,*" border="0">
<frame src="http://reciprocity-ring-001.appspot.com/" frameborder="0">
<frame frameborder="0" noresize>
</frameset>
<!-- pageok --><!-- 03 --><!-- -->
</html>
2/ How can I work around this issue without editing the above file?
Emmanuel