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 http://developers.facebook.com/docs/reference/plugins/like/
To my surprise, my GAE templates are running in a <frame> of an GAE-autogenerated html document. http://developers.facebook.com/tools/debug/og/object?q=reciprocity-ring-001.appspot.com 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 -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/MV_vL7Rn6t8J. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
