Technical Verification of LINE URL Scheme

Tadashi Shigeoka ·  Tue, September 21, 2021

I’ll introduce the results of my technical verification of LINE URL scheme.

LINE

Background: Want to Utilize LINE URL Scheme

I’ll compile sample code I verified in this article, referencing LINE URLスキームでLINEの機能を使う | LINE Developers.

Sending LINE Text Messages

https://line.me/R/share?text={text_message}

Source: テキストメッセージを送る | LINE URLスキームでLINEの機能を使う | LINE Developers

For example, if you want to send the text message こんにちは! (Hello!) via LINE,

encodeURIComponent("こんにちは!")

You set the encoded value to text= like this:

https://line.me/R/share?text=%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF%EF%BC%81

Users can access a URL like this and it will work.

That’s all from the Gemba on technically verifying LINE URL scheme.