Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dustinsmith1024/group_me
Elixir wrapper for the Group Me API
https://github.com/dustinsmith1024/group_me
api groupme rest sms socket websocket
Last synced: about 1 month ago
JSON representation
Elixir wrapper for the Group Me API
- Host: GitHub
- URL: https://github.com/dustinsmith1024/group_me
- Owner: dustinsmith1024
- Created: 2016-11-19T05:47:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-14T14:47:33.000Z (about 8 years ago)
- Last Synced: 2024-10-12T09:25:03.704Z (2 months ago)
- Topics: api, groupme, rest, sms, socket, websocket
- Language: Elixir
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GroupMe
An Elixir library for working with the GroupMe API.
Supports basic HTTP client and the Socket/Faye streaming protocols.## Usage
Check the code for now.
The Socket handler is the best for consuming messages, and the messages module is best for sending them.## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `group_me` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:group_me, "~> 0.1.0"}]
end
```2. Ensure `group_me` is started before your application:
```elixir
def application do
[applications: [:group_me]]
end
```