I have an action, e.g. 'test', and I would like to post with 2 objects, let's say 'objectFoo' and 'objectBaa'
The motive for connecting 2 objects to one action is I would like to create 2 aggregations for one action, each displaying different data.
Using the Graph API Explorer...
I can successfully post a 'Test' action where I add the field 'objectFoo' is 'http://apps.facebook.com/myapp/opengraph?id=objectFoo'
and
I can successfully post a 'Test' action where I add the field 'objectBaa' is 'http://apps.facebook.com/myapp/opengraph?id=objectBaa'
However I would like to post an action giving both of these objects. When I try this I get a code 100 error which reads:
{
"error": {
"message": "(#100) Only one of objectFoo, objectBaa reference objects can be specified for type myapp:test.",
"type": "OAuthException",
"code": 100
}
}
On the opengraph dashboard, when defining and Action it is possible to connect and action to more than one object in the 'Connected Object Types' field (I wanted to post a screenshot but I'm a newbee here), but as stated I receive an error when testing this. Is there a bug with the Graph API explorer or is what I am trying to do fundamentally wrong?
Thank you for any feedback