Created
November 20, 2018 06:17
-
-
Save chomado/c0d9c2526dbf2414cfaf7d4a4dfcf01e to your computer and use it in GitHub Desktop.
This file contains 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
CEKRequest request = ...; // Clova から来たリクエスト | |
var client = new LineMessagingClient("LINE Developers で取得できるシークレット"); | |
await client.PushMessageAsync( | |
request.Session.User.UserId, | |
new List<ISendMessage> | |
{ | |
new TextMessage("送りたいメッセージ"), | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment