Created
June 18, 2014 18:03
-
-
Save takashicompany/37a910c98ead3bd3580a to your computer and use it in GitHub Desktop.
Unityでお手軽にTwitter・Line投稿をつくるサンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// WebブラウザのTwitter投稿画面を開く | |
Application.OpenURL("http://twitter.com/intent/tweet?text=" + WWW.EscapeURL("テキスト #hashtag")); | |
// Lineに投稿 | |
Application.OpenURL("http://line.naver.jp/R/msg/text/?" + WWW.EscapeURL("テキスト", System.Text.Encoding.UTF8)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment