I am developing a facebook application. I have a custom object created in the open graph, below listed are few of my concerns
- Do every object instances under a specific object type require a unique web page?
- I am using JS SDK to post open graph actions, is there any rule that the object url("myobjectrul" in the below code) I use in the js function for eg:
FB.api('/me/myapp:myaction' + '?myobject=myobjecturl&access_token=myaccessToken', 'post', { scrape: true },
function (response) {
var msg = 'Error occured';
if (!response || response.error) {
if (response.error) {
msg += "\n\nType: " + response.error.type + "\n\nMessage: " + response.error.message;
} alert(msg);
} else {
alert('Post was successful! Action ID: ' + response.id);
}
});
should be same with the og:url in the metatag in the object?
can we pass any query strings along with the object url that can be retrieved in the object page?
How can we post the same object type with different object properties(for eg. different image, different urls etc.)
any help is greatly appreciated.