Method: Webmention.send_webmention
- Defined in:
- lib/webmention.rb
.send_webmention(source, target, vouch: nil) ⇒ Webmention::Response, Webmention::ErrorResponse
Send a webmention from a source URL to a target URL.
61 62 63 |
# File 'lib/webmention.rb', line 61 def self.send_webmention(source, target, vouch: nil) Client.new(source, vouch: vouch).send_webmention(target) end |