Skip to content

Instantly share code, notes, and snippets.

@WestHillApps
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WestHillApps/9613597 to your computer and use it in GitHub Desktop.
Save WestHillApps/9613597 to your computer and use it in GitHub Desktop.
LINEにメッセージを送る簡易版
using UnityEngine;
public class LineCtrl
{
/// <summary>
/// LINEにメッセージを送る
/// インストールされていない場合はアプリDLページヘ飛ぶ
/// </summary>
/// <param name="msg">メッセージ内容</param>
public static void SendLineMessage(string msg) {
string url = "http://line.me/R/msg/text/?" + WWW.EscapeURL(msg);
Application.OpenURL(url);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment