Sha256: 2ab3f4b07ac372039114ea3d8918176f911bfa2a17fb39c9d71fb5d8055f8ed7
Contents?: true
Size: 1.55 KB
Versions: 2
Compression:
Stored size: 1.55 KB
Contents
# typed: strict # frozen_string_literal: true module WhatsappSdk module Resource class MediaTypes extend T::Sig # The media types supported by Whatsapp. The list contains all the types defined in the Whatsapp API # documentation: https://developers.facebook.com/docs/whatsapp/cloud-api/reference/media#supported-media-types # # The media type is used as a content-type header when downloading the file with MediasApi#download_file. # The content-type header matches with the media type using Internet Assigned Numbers Authority (IANA). # Media type list defined by IANA https://www.iana.org/assignments/media-types/media-types.xhtml # # NOTE: Cloud API may decide to allow more media types to be downloaded, since the support differs depending on # the used client. AUDIO_TYPES = %w[audio/aac audio/mp4 audio/mpeg audio/amr audio/ogg].freeze DOCUMENT_TYPES = %w[ text/plain application/pdf application/vnd.ms-powerpoint application/msword application/vnd.ms-excel application/vnd.openxmlformats-officedocument.wordprocessingml.document application/vnd.openxmlformats-officedocument.presentationml.presentation application/vnd.openxmlformats-officedocument.spreadsheetml.sheet ].freeze IMAGE_TYPES = %w[image/jpeg image/png].freeze STICKER_TYPES = %w[image/webp].freeze VIDEO_TYPES = %w[video/mp4 video/3gp].freeze SUPPORTED_MEDIA_TYPES = [AUDIO_TYPES + DOCUMENT_TYPES + IMAGE_TYPES + STICKER_TYPES + VIDEO_TYPES].flatten.freeze end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
whatsapp_sdk-0.12.1 | lib/whatsapp_sdk/resource/media_types.rb |
whatsapp_sdk-0.12.0 | lib/whatsapp_sdk/resource/media_types.rb |