I am using Google App Engine to host my Facebook Application because it is the most generous in terms of quota. I would like to use the Open Graph API to publish actions (cook a pizza, cook a chicken, cook a pie, etc.)
Since the Python Facebook SDK is now deprecated, I was wondering if someone can explain the limitations of my app in terms of what features it is able to access. It seems like I can use the JavaScript SDK to authenticate the user, publish actions, etc.
Here is my meta tags at the html client-side of my app interface:
<meta property="fb:app_id" content="250027595026486" />
<meta property="og:type" content="socialdocking:chemical" />
<meta property="og:url" content="http://beta2.socialdocking.appspot.com/" />
<meta property="og:title" content="Sample Chemical" />
<meta property="og:description" content="Some Arbitrary String" />
<meta property="og:image" content="https://s-static.ak.fbcdn.net/images/devsite/attachment_blank.png" />
How can I have different values for 'Sample Chemical' the 'Chemical' without manually writing it from the server? Is it possible to retrieve a value using AJAX and change the value "Sample Chemical" before publishing the action? In other words, do I have to abide by the design that an Open Graph "Object" is represented by a single web page, or can I use a single web page to represent multiple objects simultaneously?
Thanks!