SocialWorkerは、iOS/AndroidでのTwitter、Facebook、Line、Instagram、メールへの連携を簡単に行うことが出来るUnityAssetです。
詳しくは以下をご確認下さい。
SocialWorkerは各種SNSへの簡単なデータの受け渡しをサポートしています。そのため、連携可能なデータはメッセージと画像のみです(SNSによっては微妙に追加で渡せるデータもあったりしますが)。
連携方法は、iOSではURLSchemeを主に使用しており、AndroidではIntentによるデータの受け渡しの方法を取っています。
Unity 5.0+
iOS 6.0+
Android 2.3+
[SocialWorker/Prefabs/SocialWorker]をHierarchyに設置。
SocialWorker.PostTwitter(string message, string url, string imagePath, Action<SocialWorkerResult> onResult = null)
SocialWorker.PostFacebook(string imagePath, Action<SocialWorkerResult> onResult = null)
SocialWorker.PostLine(string message, string imagePath, Action<SocialWorkerResult> onResult = null)
SocialWorker.PostInstagram(string imagePath, Action<SocialWorkerResult> onResult = null)
SocialWorker.PostMail(string[] to, string[] cc, string[] bcc, string subject, string message, string imagePath, Action<SocialWorkerResult> onResult = null)
SocialWorker.CreateChooser(string message, string imagePath, Action<SocialWorkerResult> onResult = null)
本プロジェクトをUnity上にそのままインポートするか、トップ階層にある SocialWorker.unitypackage をご使用下さい。