Line.Messaging 1.2.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package Line.Messaging --version 1.2.4
NuGet\Install-Package Line.Messaging -Version 1.2.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Line.Messaging" Version="1.2.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Line.Messaging --version 1.2.4
#r "nuget: Line.Messaging, 1.2.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Line.Messaging as a Cake Addin
#addin nuget:?package=Line.Messaging&version=1.2.4

// Install Line.Messaging as a Cake Tool
#tool nuget:?package=Line.Messaging&version=1.2.4

SDK for the LINE Messaging API for C#

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Line.Messaging:

Repository Stars
pierre3/LineMessagingApi
LINE Messaging API for .Net
microsoft/Dynamics365-Apps-Samples
Sample code for Dynamics 365 apps
Version Downloads Last updated
1.4.5 45,043 1/20/2019
1.4.4 1,299 12/27/2018
1.4.3 1,347 11/23/2018
1.4.2 1,168 11/13/2018
1.4.1 1,978 9/21/2018
1.3.1 1,786 6/20/2018
1.2.6 1,681 5/2/2018
1.2.5 1,398 4/15/2018
1.2.4 4,802 3/4/2018
1.2.2 1,509 2/7/2018
1.2.1 2,056 12/14/2017
1.1.0 1,738 12/1/2017
1.0.1 1,625 11/9/2017
0.7.0-beta 1,193 11/4/2017
0.6.0-beta 1,206 10/7/2017
0.5.0-alpha 1,279 10/4/2017
0.4.0-alpha 1,219 9/18/2017
0.3.1-alpha 1,192 9/10/2017
0.2.0-alpha 1,209 8/27/2017
0.1.0-alpha 1,235 8/22/2017

Supports API update at 2018-02-08 and 2018-02-22
( https://developers.line.me/en/docs/messaging-api/release-notes/ )

1. Default actions can now be set for template messages

2.  displayText property for postback actions released
 - We have released the displayText property and have deprecated the text property for postback actions.
   We recommend using displayText instead of the text property.
 - (Breaking changes) In the constructor of PostbackTemplateAction,
   the value of the text parameter is now set to the DisplayText property by default.
   If you want to use the Text property as before, please set "useDisplayText" parameter to "false".

   //Use the DisplayText property
   PostbackTemplateAction("label", "data", "text");

   //Use the Text property (Behavior of previous versions)
   PostbackTemplateAction("label", "data", "text", useDisplayText : false);

3. Property for accessibility released
 - Now you can specify text to be spoken using the label property for imagemap messages and rich menus when the accessibility feature is enabled on the client device.
   This feature is supported on LINE iOS version 8.2.0 and later.