You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hallo, I'm trying to write an application for the iPhone.
I don't know which function should I use to get the wall of the user. Which would be the equivalent of calling for example:
But I see no point of using a Dictionary here when I want to get the feed.
Is this the correct function to get te Wall info? How am I suposed to use the Dictionary parameter?
Thanks.
The text was updated successfully, but these errors were encountered:
The feed is not an object proper in the semantics of the graph, it is a connection type of an object node. In the syntax of Bamboo, this is represented by the getConnections method, which basically just calls a url with "object/connection"
I created constants for all of the valid connection types, which you can see at the bottom of GraphAPI.h...but if you know the API name, you can just as well use the string directly.
Hallo, I'm trying to write an application for the iPhone.
I don't know which function should I use to get the wall of the user. Which would be the equivalent of calling for example:
http://graph.facebook.com/me/feed
http://graph.facebook.com/1722181189/feed
I thought it would be something like:
GraphObject *o = [self._graph getObject:@"1722181189" withArgs:[NSDictionary dictionaryWithObjectsAndKeys:@"feed", @"feed", nil]];
But I see no point of using a Dictionary here when I want to get the feed.
Is this the correct function to get te Wall info? How am I suposed to use the Dictionary parameter?
Thanks.
The text was updated successfully, but these errors were encountered: