hunter v0.3.0 Hunter.Attachment

Attachment entity

This module defines a Hunter.Attachment struct and the main functions for working with Attachments.

Fields

  • id - ID of the attachment
  • type - One of: “image”, “video”, “gifv”
  • url - URL of the locally hosted version of the image
  • remote_url - For remote images, the remote URL of the original image
  • preview_url - URL of the preview image
  • text_url - Shorter URL for the image, for insertion into text (only present on local images)

Summary

Functions

Upload a media attachment

Types

t()
t() :: %Hunter.Attachment{id: non_neg_integer, preview_url: URI.t, remote_url: URI.t, text_url: URI.t, type: String.t, url: URI.t}

Functions

upload_media(conn, file)

Upload a media attachment

Parameters

  • conn - connection credentials
  • file - media to be uploaded