I'd like to know if there is a proper way to post a message to a user's wall with the new SDK.
From what I understand there is no way anymore to display a message preview with a dialog view to the user before posting.
I'd rather not using deprecated API. I followed the tutorial for login in with Facebook with the new SDK (importing the Framework etc). When it comes to post a message they ask to import the deprecated Facebook.h header (and its friends...) but it generates lot of compilation errors because some classes are named the same.
Do you people use the deprecated API?
Or do I have to create a custom view myself to display a preview to the user and then use the FBRequest method + requestWithGraphPath:parameters:HTTPMethod: to perform the post "in the background"?
|
|
|||||
|
|
The solution is simple. This worked for me: We need not import the deprecated headers at all. By using only the latest facebook ios sdk 3.0 following is what you can do.
fbid is the profile id of the user. You can give the friend's profile id in order to post on his wall. In case you have to post on the user's own wall, you can either give the graph path as @"me/feed" or as stated above (by giving the fbid as the user's profile id) Hope this helps. |
|||||||||||
|
|
I ran into the same problem and I couldn't find a way around importing the deprecated headers, like the tutorial says. After importing both the framework and Facebook.h with friends, clean your project to make sure the linker doesn't complain about the same file names. The apprequests tutorial still explicitly says to import deprecated headers. So I don't think FB wants you to implement your own views. I would assume they had to release 3.0 and posting to wall and apprequests weren't finished, so they now have this hybrid 3.0/deprecated system until they finish the rest. |
|||||||||||
|
|
As of Facebook SDK 3.2, it is now possible to display a native dialog with the new classes available in the SDK. Have a look to FBNativeDialogs, FBShareDialogParams and FBOpenGraphActionShareDialogParams. |
|||
|
|