LINE-Bot-API

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


1.20  2021-04-09 18:28:50 JST
        - Add acceptedTime and completedTime field to narrowcast progress status (PR #179)
        - add an accessor to property named 'keywords' to LINE::Bot::API::Event::Message::Sticker (issue #163)
        - add an accessor to property named 'mention' to LINE::Bot::API::Event::Message::Text (issue #171)
        - add a new API for setting webhook endpoint (issue #159)
        - add a new API for getting webhook endpoint information (issue #159)
        - add a new API for testing webhook endpoint (issue #159)

1.19  2021-01-22 17:01:55 JST
        - requires IO::Socket::SSL at least 2.060 for the support of TLS 1.3 (PR #165)
          - See also: https://developers.line.biz/ja/news/2020/10/06/update-webhook-client-and-root-certificate/
        - Minor documentation updates and warning fixes.
        - Update examples of Flex Messages. See eg/push-flex-message-showcases.pl (PR #155)
        - Update test case for creating audience data with uploading user id (PR #157)

1.18  2020-10-12 12:40:31 JST
        - Changed accepting parameter "sender" at SendMessage.pm (Issue #113 PR#140)
        - Update Type constraint for the new puper limit of characters in a TextMessage (PR #144)
        - Add accessor for emoji information in TextMessage (PR #145)
        - Add method: get_group_summary, get_member_in_group_count, get_member_in_room_count (Issue#141, PR#142)

META.json  view on Meta::CPAN

         "requires" : {
            "Dist::Milla" : "v1.0.22",
            "Test::Perl::Critic" : "0",
            "Test::Pod" : "1.41"
         }
      },
      "runtime" : {
         "requires" : {
            "Digest::SHA" : "0",
            "Furl" : "0",
            "IO::Socket::SSL" : "2.060",
            "JSON::XS" : "0",
            "MIME::Base64" : "0",
            "Type::Tiny" : "1.004000",
            "URI" : "0",
            "URI::QueryParam" : "0",
            "parent" : "0",
            "perl" : "5.014000"
         }
      },
      "test" : {

META.yml  view on Meta::CPAN

  directory:
    - eg
    - examples
    - inc
    - share
    - t
    - xt
requires:
  Digest::SHA: '0'
  Furl: '0'
  IO::Socket::SSL: '2.060'
  JSON::XS: '0'
  MIME::Base64: '0'
  Type::Tiny: '1.004000'
  URI: '0'
  URI::QueryParam: '0'
  parent: '0'
  perl: '5.014000'
resources:
  bugtracker: https://github.com/line/line-bot-sdk-perl/issues
  homepage: https://github.com/line/line-bot-sdk-perl

Makefile.PL  view on Meta::CPAN

  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "LINE-Bot-API",
  "LICENSE" => "artistic_2",
  "MIN_PERL_VERSION" => "5.014000",
  "NAME" => "LINE::Bot::API",
  "PREREQ_PM" => {
    "Digest::SHA" => 0,
    "Furl" => 0,
    "IO::Socket::SSL" => "2.060",
    "JSON::XS" => 0,
    "MIME::Base64" => 0,
    "Type::Tiny" => "1.004000",
    "URI" => 0,
    "URI::QueryParam" => 0,
    "parent" => 0
  },
  "TEST_REQUIRES" => {
    "App::Yath" => 0,
    "Test2::V0" => 0,

Makefile.PL  view on Meta::CPAN

  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "App::Yath" => 0,
  "Digest::SHA" => 0,
  "Furl" => 0,
  "IO::Socket::SSL" => "2.060",
  "JSON::XS" => 0,
  "MIME::Base64" => 0,
  "Test2::V0" => 0,
  "Test::More" => 0,
  "Type::Tiny" => "1.004000",
  "URI" => 0,
  "URI::QueryParam" => 0,
  "parent" => 0
);

cpanfile  view on Meta::CPAN

requires 'perl', '5.014000';

requires 'parent';
requires 'Digest::SHA';
requires 'Furl';
requires 'JSON::XS';
requires 'IO::Socket::SSL', '2.060';
requires 'MIME::Base64';
requires 'Type::Tiny', '1.004000';
requires 'URI';
requires 'URI::QueryParam';

on test => sub {
    requires 'App::Yath';
    requires 'Test2::V0';
    requires 'Test::More';
};



( run in 0.268 second using v1.01-cache-2.11-cpan-4d50c553e7e )