Popularity
3.3
Stable
Activity
0.0
Stable
20
3
3

Monthly Downloads: 0
Programming language: Elixir
License: MIT License
Tags: Third Party APIs     API     SDK     Medium    
Latest version: v0.2.0

Medium SDK for Elixir alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view Medium SDK for Elixir alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Medium SDK for Elixir or a related project?

Add another 'Third Party APIs' Package

README

Build Status Coverage Status Hex.pm

Medium SDK for Elixir

An Elixir SDK for the Medium.com API.

Installation

If available in Hex, the package can be installed as:

  1. Add medium to your list of dependencies in mix.exs:

    def deps do
      [{:medium, "~> 0.2"}]
    end
    
  2. Ensure medium is started before your application:

    def application do
      [applications: [:medium]]
    end
    

Usage

Since all Medium requests must be made with an integration token, you need to create a new client associated with that token in order to perform requests:

client = Medium.client("my-access-token")

With our client at hand, we can start making requests to the API! :boom:

# We can perform all GET requests described on the API:
user = Medium.me(client)
user_publications = Medium.publications(client, user.id)

# And we can also publish:
post = %{
  title: "Liverpool FC",
  content_format: "html",
  content: "<h1>Liverpool FC</h1><p>You’ll never walk alone.</p>",
  canonical_url: "http://jamietalbot.com/posts/liverpool-fc",
  tags: ["football", "sport", "Liverpool"],
  publish_status: "public"
}

response = Medium.publish(client, user.id, post)

Don't forget to check the Medium API or the documentation to see all available methods.

Roadmap

  • [ ] Improve the documentation
  • [ ] Improve the test suite
  • [ ] Remove the Tesla dependency

Licence

All the code contained in this repository, unless explicitly stated, is licensed under an MIT license.

A copy of the license can be found in the [LICENSE](LICENSE) file.


*Note that all licence references and agreements mentioned in the Medium SDK for Elixir README section above are relevant to that project's source code only.