Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toddsundsted/web_finger
A WebFinger (https://tools.ietf.org/html/rfc7033) client for Crystal.
https://github.com/toddsundsted/web_finger
crystal webfinger
Last synced: 11 days ago
JSON representation
A WebFinger (https://tools.ietf.org/html/rfc7033) client for Crystal.
- Host: GitHub
- URL: https://github.com/toddsundsted/web_finger
- Owner: toddsundsted
- License: mit
- Created: 2019-04-08T23:40:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T11:55:11.000Z (7 months ago)
- Last Synced: 2024-04-22T13:01:46.676Z (7 months ago)
- Topics: crystal, webfinger
- Language: Crystal
- Size: 66.4 KB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-crystal - web_finger - A WebFinger (https://tools.ietf.org/html/rfc7033) client (Third-party APIs)
README
# web_finger
[![GitHub Release](https://img.shields.io/github/release/toddsundsted/web_finger.svg)](https://github.com/toddsundsted/web_finger/releases)
[![Build Status](https://github.com/toddsundsted/web_finger/actions/workflows/ci.yml/badge.svg)](https://github.com/toddsundsted/web_finger/actions)
[![Documentation](https://img.shields.io/badge/docs-available-brightgreen.svg)](https://toddsundsted.github.io/web_finger/)A [WebFinger](https://tools.ietf.org/html/rfc7033) client for Crystal.
## Installation
1. Add the dependency to your `shard.yml`:
```yaml
dependencies:
web_finger:
github: toddsundsted/web_finger
```2. Run `shards install`
## Usage
```crystal
require "web_finger"w = WebFinger.query("acct:[email protected]") # => #
w.link("http://webfinger.net/rel/profile-page").href # => "https://epiktistes.com/@toddsundsted"
```## Contributors
- [Todd Sundsted](https://github.com/toddsundsted) - creator and maintainer