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 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
2/ How can I work around this issue without editing the above file?
Emmanuel