# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 32
# self = https://watcher.sour.is/conv/3rhsaxa
Trying to wrap my head around webfinger..

my first thoughts about it were that a subject of acct:me@sour.is would have a listing of rel's for the different accounts that are related to me (ie. yarn, salty, twitter, mastodon, etc...)

but maybe my thinking is at the wrong level.. that each of those accounts would be on a subject level and the rels are describing different aspects of that account. so i would have salty:acct:xuu@sour.is, twitter:acct:xuu, mastodon:acct:xuu@chaos.social, yarn:acct:xuu@ev.sour.is and then i could have a main acct:me@sour.is that links them together as aliases.

I found okta will do something similar with its accounts to show as okta:acct:user@domain so maybe I am on to something?
@xuu So... From a practical perspective, wouldn't it make sense to have related identifiers that are "related" to the subject? Hence rel? If I were a user, I would expect to lookup only prologic@twtxt.net to find both my Yarn and Salty accounts and ways to follow or message me as such.
@xuu So... From a practical perspective, wouldn't it make sense to have related identifiers that are "related" to the subject? Hence rel? If I were a user, I would expect to lookup only prologic@twtxt.net to find both my Yarn and Salty accounts and ways to follow or message me as such.
@xuu So... From a practical perspective, wouldn't it make sense to have related identifiers that are "related" to the subject? Hence rel? If I were a user, I would expect to lookup only prologic@twtxt.net to find both my Yarn and Salty accounts and ways to follow or message me as such.
@xuu So... From a practical perspective, wouldn't it make sense to have related identifiers that are "related" to the subject? Hence rel? If I were a user, I would expect to lookup only prologic@twtxt.net to find both my Yarn and Salty accounts and ways to follow or message me as such.
@prologic That was exactly my thought at first too. but what do we put as the rel for salty account? since it is decentralized we dont have a set URL for machines to key off. so for example take the standard response from okta:


# http GET https://example.okta.com/.well-known/webfinger  resource==acct:bob
{
    "links": [
        {
            "href": "https://example.okta.com/sso/idps/OKTA?login_hint=bob#",
            "properties": {
                "okta:idp:type": "OKTA"
            },
            "rel": "http://openid.net/specs/connect/1.0/issuer",
            "titles": {
                "und": "example"
            }
        }
    ],
    "subject": "acct:bob"
}


It gives one link that follows the OpenID login. So the details are specific to the subject acct:bob.

Mastodons response:


{
  "subject": "acct:xuu@chaos.social",
  "aliases": [
    "https://chaos.social/@xuu",
    "https://chaos.social/users/xuu"
  ],
  "links": [
    {
      "rel": "http://webfinger.net/rel/profile-page",
      "type": "text/html",
      "href": "https://chaos.social/@xuu"
    },
    {
      "rel": "self",
      "type": "application/activity+json",
      "href": "https://chaos.social/users/xuu"
    },
    {
      "rel": "http://ostatus.org/schema/1.0/subscribe"
    }
  ]
}


it supplies a profile page and a self which are both specific to that account.
@prologic That was exactly my thought at first too. but what do we put as the rel for salty account? since it is decentralized we dont have a set URL for machines to key off. so for example take the standard response from okta:


# http GET https://example.okta.com/.well-known/webfinger  resource==acct:bob
{
    "links": [
        {
            "href": "https://example.okta.com/sso/idps/OKTA?login_hint=bob#",
            "properties": {
                "okta:idp:type": "OKTA"
            },
            "rel": "http://openid.net/specs/connect/1.0/issuer",
            "titles": {
                "und": "example"
            }
        }
    ],
    "subject": "acct:bob"
}


It gives one link that follows the OpenID login. So the details are specific to the subject acct:bob.

Mastodons response:


{
  "subject": "acct:xuu@chaos.social",
  "aliases": [
    "https://chaos.social/@xuu",
    "https://chaos.social/users/xuu"
  ],
  "links": [
    {
      "rel": "http://webfinger.net/rel/profile-page",
      "type": "text/html",
      "href": "https://chaos.social/@xuu"
    },
    {
      "rel": "self",
      "type": "application/activity+json",
      "href": "https://chaos.social/users/xuu"
    },
    {
      "rel": "http://ostatus.org/schema/1.0/subscribe"
    }
  ]
}


it supplies a profile page and a self which are both specific to that account.
@xuu Yeah I see where you're coming from, and if your Salty IM address is on another domain entirely, then yeah... But if for example you have a Yarn and Salty account on the same domain, and both are for example xuu@sour.is -- I would fully expect to see them both as aliases with respective rel(s) no?
@xuu Yeah I see where you're coming from, and if your Salty IM address is on another domain entirely, then yeah... But if for example you have a Yarn and Salty account on the same domain, and both are for example xuu@sour.is -- I would fully expect to see them both as aliases with respective rel(s) no?
@xuu Yeah I see where you're coming from, and if your Salty IM address is on another domain entirely, then yeah... But if for example you have a Yarn and Salty account on the same domain, and both are for example xuu@sour.is -- I would fully expect to see them both as aliases with respective rel(s) no?
@xuu Yeah I see where you're coming from, and if your Salty IM address is on another domain entirely, then yeah... But if for example you have a Yarn and Salty account on the same domain, and both are for example xuu@sour.is -- I would fully expect to see them both as aliases with respective rel(s) no?
Moreover, what does the upstream spec have to say about this?
Moreover, what does the upstream spec have to say about this?
Moreover, what does the upstream spec have to say about this?
Moreover, what does the upstream spec have to say about this?
@prologic Unfortunately the RFC's are a bit light in this regard. While it makes mention of different kinds of accounts like mailto: or status services.. it never combines them. It does make mention of using redirects to forward a request to other webfingers to provide additional detail.

I am kinda partial to using salty:acct:me@sour.is, yarn:acct:xuu@txt.sour.is, mailto:me@sour.is that could redirect to a specific service. and a parent account acct:me@sour.is that would reference them in some way. either in properties or aliases.
@prologic Unfortunately the RFC's are a bit light in this regard. While it makes mention of different kinds of accounts like mailto: or status services.. it never combines them. It does make mention of using redirects to forward a request to other webfingers to provide additional detail.

I am kinda partial to using salty:acct:me@sour.is, yarn:acct:xuu@txt.sour.is, mailto:me@sour.is that could redirect to a specific service. and a parent account acct:me@sour.is that would reference them in some way. either in properties or aliases.
@xuu that doesn't seem to fit the spirit of the spec, at least by my read (I could be wrong obv). The example on Wikipedia's webfinger page,
n
{
\t"subject": "acct:bob@example.com",
\t"aliases": [
\t\t"https://www.example.com/~bob/"
\t],
\t"properties": {
\t\t"http://example.com/ns/role": "employee"
\t},
\t"links": [{
\t\t\t"rel": "http://webfinger.example/rel/profile-page",
\t\t\t"href": "https://www.example.com/~bob/"
\t\t},
\t\t{
\t\t\t"rel": "http://webfinger.example/rel/businesscard",
\t\t\t"href": "https://www.example.com/~bob/bob.vcf"
\t\t}
\t]
}


and then the comparison with how mastodon uses webfinger,

n
{
    "subject": "acct:Mastodon@mastodon.social",
    "aliases": [
        "https://mastodon.social/@Mastodon",
        "https://mastodon.social/users/Mastodon"
    ],
    "links": [
        {
            "rel": "http://webfinger.net/rel/profile-page",
            "type": "text/html",
            "href": "https://mastodon.social/@Mastodon"
        },
        {
            "rel": "self",
            "type": "application/activity+json",
            "href": "https://mastodon.social/users/Mastodon"
        },
        {
            "rel": "http://ostatus.org/schema/1.0/subscribe",
            "template": "https://mastodon.social/authorize_interaction?uri={uri}"
        }
    ]
}


suggests to me you want to leave the subject/acct bit as is (don't add prefixes) and put extra information you care to include in the links section, where you're free to define the rel URIs however you see fit. The notion here is that webfinger is offering a mapping from an account name to additional information about that account, so if anything you'd use a "subject": "acct:SALTY ACCOUNT_REPRESENTATION" line in the JSON to achieve what you're saying if you don't want to do that via links.
@xuu that doesn't seem to fit the spirit of the spec. The example on Wikipedia's webfinger page,
n
{
\t"subject": "acct:bob@example.com",
\t"aliases": [
\t\t"https://www.example.com/~bob/"
\t],
\t"properties": {
\t\t"http://example.com/ns/role": "employee"
\t},
\t"links": [{
\t\t\t"rel": "http://webfinger.example/rel/profile-page",
\t\t\t"href": "https://www.example.com/~bob/"
\t\t},
\t\t{
\t\t\t"rel": "http://webfinger.example/rel/businesscard",
\t\t\t"href": "https://www.example.com/~bob/bob.vcf"
\t\t}
\t]
}


and then the comparison with how mastodon uses webfinger,

n
{
    "subject": "acct:Mastodon@mastodon.social",
    "aliases": [
        "https://mastodon.social/@Mastodon",
        "https://mastodon.social/users/Mastodon"
    ],
    "links": [
        {
            "rel": "http://webfinger.net/rel/profile-page",
            "type": "text/html",
            "href": "https://mastodon.social/@Mastodon"
        },
        {
            "rel": "self",
            "type": "application/activity+json",
            "href": "https://mastodon.social/users/Mastodon"
        },
        {
            "rel": "http://ostatus.org/schema/1.0/subscribe",
            "template": "https://mastodon.social/authorize_interaction?uri={uri}"
        }
    ]
}


suggests to me you want to leave the subject/acct bit as is (don't add prefixes) and put extra information you care to include in the links section, where you're free to define the rel URIs however you see fit. The notion here is that webfinger is offering a mapping from an account name to additional information about that account, so if anything you'd use a "subject": "acct:SALTY ACCOUNT_REPRESENTATION" line in the JSON to achieve what you're saying if you don't want to do that via links.
so in effect it would look something like this:


---
subject: acct:me@sour.is
aliases:
  - salty:me@sour.is
  - yarn:xuu@ev.sour.is
  - status:xuu@chaos.social
  - mailto:me@sour.is
---
subject: salty:me@sour.is
aliases:
  - acct:me@sour.is
links:
  - rel:    self
    type:   application/json+salty
    href:   https://ev.sour.is/inbox/01GAEMKXYJ4857JQP1MJGD61Z5
    properties:
        "http://salty.im/ns/nick":    xuu
        "http://salty.im/ns/display": Jon Lundy
        "http://salty.im/ns/pubkey":     kex140fwaena9t0mrgnjeare5zuknmmvl0vc7agqy5yr938vusxfh9ys34vd2p
---
subject: yarn:xuu@ev.sour.is
links:
  - rel: https://txt.sour.is/user/xuu
    properties:
        "https://sour.is/rel/redirect": https://txt.sour.is/.well-known/webfinger?resource=acct%3Axuu%40txt.sour.is
---    
subject: status:xuu@chaos.social
links:
   - rel: http://joinmastodon.org#xuu%40chaos.social
     properties:
        "https://sour.is/rel/redirect": https://chaos.social/.well-known/webfinger?resource=acct%3Axuu%40chaos.social
---
subject: mailto:me@sour.is
...
so in effect it would look something like this:


---
subject: acct:me@sour.is
aliases:
  - salty:me@sour.is
  - yarn:xuu@ev.sour.is
  - status:xuu@chaos.social
  - mailto:me@sour.is
---
subject: salty:me@sour.is
aliases:
  - acct:me@sour.is
links:
  - rel:    self
    type:   application/json+salty
    href:   https://ev.sour.is/inbox/01GAEMKXYJ4857JQP1MJGD61Z5
    properties:
        "http://salty.im/ns/nick":    xuu
        "http://salty.im/ns/display": Jon Lundy
        "http://salty.im/ns/pubkey":     kex140fwaena9t0mrgnjeare5zuknmmvl0vc7agqy5yr938vusxfh9ys34vd2p
---
subject: yarn:xuu@ev.sour.is
links:
  - rel: https://txt.sour.is/user/xuu
    properties:
        "https://sour.is/rel/redirect": https://txt.sour.is/.well-known/webfinger?resource=acct%3Axuu%40txt.sour.is
---    
subject: status:xuu@chaos.social
links:
   - rel: http://joinmastodon.org#xuu%40chaos.social
     properties:
        "https://sour.is/rel/redirect": https://chaos.social/.well-known/webfinger?resource=acct%3Axuu%40chaos.social
---
subject: mailto:me@sour.is
...
@xuu I'm not so convinced of this "prefixing" here... We're sort of euplidating that extra bit of information anyway in the rel(s) -- Maybe @abucci is right and we stick to the spirit of the spec and an alias is just that, another identifier that is the same as this one. For example in yarnd we could add support in Settings for adding other "identities" that are the same as your, so a webfinger for prologic@twtxt.net _could_ also have prologic@shortcircuit.net.au and james@mills.io as aliases?
@xuu I'm not so convinced of this "prefixing" here... We're sort of euplidating that extra bit of information anyway in the rel(s) -- Maybe @abucci is right and we stick to the spirit of the spec and an alias is just that, another identifier that is the same as this one. For example in yarnd we could add support in Settings for adding other "identities" that are the same as your, so a webfinger for prologic@twtxt.net _could_ also have prologic@shortcircuit.net.au and james@mills.io as aliases?
@xuu I'm not so convinced of this "prefixing" here... We're sort of euplidating that extra bit of information anyway in the rel(s) -- Maybe @abucci is right and we stick to the spirit of the spec and an alias is just that, another identifier that is the same as this one. For example in yarnd we could add support in Settings for adding other "identities" that are the same as your, so a webfinger for prologic@twtxt.net _could_ also have prologic@shortcircuit.net.au and james@mills.io as aliases?
@xuu I'm not so convinced of this "prefixing" here... We're sort of euplidating that extra bit of information anyway in the rel(s) -- Maybe @abucci is right and we stick to the spirit of the spec and an alias is just that, another identifier that is the same as this one. For example in yarnd we could add support in Settings for adding other "identities" that are the same as your, so a webfinger for prologic@twtxt.net _could_ also have prologic@shortcircuit.net.au and james@mills.io as aliases?
@prologic that worked.. But took crazy long time
@prologic test
@prologic that worked.. But took crazy long time
@xuu Hmmm
@xuu Hmmm
@xuu Hmmm
@xuu Hmmm