I'm working on a couple of client/server iOS apps that include the ability for a user to share info (posts, rewards, etc.) from a website or using a native mobile app (iOS for now). Please disregard the built in iOS Twitter and FB (as of iOS 6) sharing as I don't want to use them for various reasons.
Every bit of data in the app is loaded from the server, and all data input into the app is sent to and processed by the server. This is at its core a web app with a mobile app interface.
In addition, certain actions will generate, at the user's option, FB's Open Graph frictionless sharing actions (e.g. "Tommy liked Jamie's achievement.").
My thought is I should let the web app do all the heavy lifting since it has to anyway (for the web experience), but I wanted to see if there were any benefits/pitfalls I'm not thinking of.
So my question is this: Upon the action of the user sharing an item or an Open Graph verb happening, should I share this directly from the mobile app using the iOS SDK, or should I send a "share request" to the web app and let the server share to FB, Twitter or wherever?
Why? And the follow up, if I use the server as the engine for sharing, do I still need the user's FB and/or Twitter stored within the mobile app?