Skip to content

Instantly share code, notes, and snippets.

@mgng
Last active December 1, 2017 04:38
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 mgng/cf9abb38d19a8af731e43affc3851c3d to your computer and use it in GitHub Desktop.
Save mgng/cf9abb38d19a8af731e43affc3851c3d to your computer and use it in GitHub Desktop.
LINE URLスキームを使ってメッセージ送信
<p>
<input type="text" name="text" id="id_text_20171201" value="" placeholder="message" />
<button onclick="send2line();">LINEに送る</button>
</p>
<script>
function send2line(){
var text = document.getElementById("id_text_20171201").value;
if (text === "") {
alert("テキストが未入力です。");
} else {
location.href="line://msg/text/?" + encodeURIComponent(text);
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment