lookup-webmention-server
v0.2.0
Published
Discover the webmention server for a given URL
Downloads
4
Readme
Lookup WebMention Server
Discover the WebMention server for a given URL.
Usage
var lookup = require('lookup-webmention-server');
lookup('http://example.org/blog/post', function (err, url) {
if (err) {
// Handle errors
}
// do stuff with the URL!
});
API
lookup(target, callback);
The target
is the location that you have mentioned and wish to WebMention. The callback
parameter is a callback function that is called:
callback(err, url);
The err
parameter is any potential error encountered during the HTTP request.
The url
parameter is a string containing the URL to the WebMention server.