It's used for remote following.
defp webfinger_from_xml(doc) do
with subject <- XML.string_from_xpath("//Subject", doc),
+ subscribe_address <-
+ XML.string_from_xpath(
+ ~s{//Link[@rel="http://ostatus.org/schema/1.0/subscribe"]/@template},
+ doc
+ ),
ap_id <-
XML.string_from_xpath(
~s{//Link[@rel="self" and @type="application/activity+json"]/@href},
) do
data = %{
"subject" => subject,
+ "subscribe_address" => subscribe_address,
"ap_id" => ap_id
}