Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mijailr/askimet_ex
AskimetEx is a lib for use TypePad's AntiSpam services or Askimet endpoints in elixir projects.
https://github.com/mijailr/askimet_ex
Last synced: 2 months ago
JSON representation
AskimetEx is a lib for use TypePad's AntiSpam services or Askimet endpoints in elixir projects.
- Host: GitHub
- URL: https://github.com/mijailr/askimet_ex
- Owner: mijailr
- License: mit
- Created: 2019-11-20T08:40:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-27T02:48:19.000Z (over 4 years ago)
- Last Synced: 2024-08-08T19:16:17.247Z (5 months ago)
- Language: Elixir
- Size: 11.7 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Elixir client for Askimet Anti-Spam service. (Third Party APIs)
- fucking-awesome-elixir - askimet_ex - Elixir client for Askimet Anti-Spam service. (Third Party APIs)
- awesome-elixir - askimet_ex - Elixir client for Askimet Anti-Spam service. (Third Party APIs)
README
# AskimetEx
[AskimetEx](https://hex.pm/packages/askimet_ex) is a package for use TypePad's AntiSpam services or Askimet endpoints in elixir projects.
## Installation
The package can be installed by adding `askimet_ex`
to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:askimet_ex, "~> 0.1.1"}
]
end
```Read the [Documentation](https://hexdocs.pm/askimet_ex)
## Usage
Use the module with parameters:
- Askimet API Key
- Blog URL
- User IP Address
- Comment or message```elixir
AskimetEx.check_spam(api_key, blog_url, user_ip, comment)
```## Collaborate
If you want to collaborate, please make a pull request.