i want to implement some basic facebook and twitter in my ios game.
the app should just be able to send posts with text+image.
after searching around in this forum i think i narrowed it down to two solutions:
facbook’s plugin for facebook and neatplug for twitter
u3dxt plugin for both facebook and twitter
both solutions are pretty inexpensive. so i would like to know your opinion which is the easier to use and more trouble free one.
has anyone used all three plugs and can make a recommendation?
@cbaltzer i could not find a documentation for your plugin. is it c#?
i would like to be able to know if the user is conected to twitter/facebook before the share call. so i could only show a share button if he is. can this be done with your plugin and if yes how?
As of right now, no. Sorry! The menu that comes up shows whatever accounts the user is logged into through the OS. But, there’s no methods for checking whether Facebook/Twitter are logged in before showing the menu. That seems like a pretty obvious feature though, so I’ll definitely be adding it. Thanks for the suggestion.
EDIT:
We also have FaceBook graph access. Twitter and Sina Weibo too, if you want to access their web apis directly, you can use the DirectRequestService class.
EDIT2:
For the most part, I suggest sticking with the non-native classes because they require less coding (Complete API). Anything without the “.Native.” in the namespace is part of the high level API. The high level API wraps a bunch of low-level APIs into one line. For example, posting to FaceBook is one line:
SocialXT.Post(SLRequest.SLServiceTypeFacebook, "The best games!", aTexture, "http://vitapoly.com");