Skip to content

Instantly share code, notes, and snippets.

@takashicompany
Created June 18, 2014 18:03
Show Gist options
  • Save takashicompany/37a910c98ead3bd3580a to your computer and use it in GitHub Desktop.
Save takashicompany/37a910c98ead3bd3580a to your computer and use it in GitHub Desktop.
Unityでお手軽にTwitter・Line投稿をつくるサンプル
// 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