{ "subject": "acct:ni...@silverbucket.net", "links": [ ... { "rel": "http://packetizer.com/rel/blog", "href": "http://blog.silverbucket.net" }, ... ] }And I think you could simply add another record for another blog.
--
---
You received this message because you are subscribed to the Google Groups "WebFinger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to webfinger+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Hi Melvin,I believe you can just have multiple entries for a blog, for example in my WF document [1] I have:
{ "subject": "acct:ni...@silverbucket.net", "links": [ ... { "rel": "http://packetizer.com/rel/blog", "href": "http://blog.silverbucket.net" }, ... ] }And I think you could simply add another record for another blog.
Thanks I think I have the relevant text:
[[
The order of elements in the "links" array indicates an order of
preference. Thus, if there are two or more link relations having the
same "rel" value, the first link relation would indicate the user's
preferred link.
]]
By the way I think you have the wrong @type in your profile, it should be a media type, not a URI
On Sun, Jul 28, 2013 at 6:46 PM, Melvin Carvalho <melvinc...@gmail.com> wrote:
Thanks I think I have the relevant text:
[[
The order of elements in the "links" array indicates an order of
preference. Thus, if there are two or more link relations having the
same "rel" value, the first link relation would indicate the user's
preferred link.
]]Nice.By the way I think you have the wrong @type in your profile, it should be a media type, not a URI
You mean in my remoteStorage section? I'm not sure, I just copied that from my storage provider a while back.
On 28 July 2013 18:52, Nick Jennings <ni...@silverbucket.net> wrote:
On Sun, Jul 28, 2013 at 6:46 PM, Melvin Carvalho <melvinc...@gmail.com> wrote:By the way I think you have the wrong @type in your profile, it should be a media type, not a URI
You mean in my remoteStorage section? I'm not sure, I just copied that from my storage provider a while back.From the spec
[[
The "type" member is a string indicating what the media type of the result of dereferencing the link ought to be.
]]
On Sun, Jul 28, 2013 at 7:07 PM, Melvin Carvalho <melvinc...@gmail.com> wrote:
On 28 July 2013 18:52, Nick Jennings <ni...@silverbucket.net> wrote:
On Sun, Jul 28, 2013 at 6:46 PM, Melvin Carvalho <melvinc...@gmail.com> wrote:By the way I think you have the wrong @type in your profile, it should be a media type, not a URI
You mean in my remoteStorage section? I'm not sure, I just copied that from my storage provider a while back.From the spec
[[
The "type" member is a string indicating what the media type of the result of dereferencing the link ought to be.
]]I see, it's quite possible that the properties remoteStorage uses have fallen out of alignment with the spec. Though I'm not sure. Maybe someone else can shed some light on the subject?
Also is it valid to have a properties section INSIDE of links, I was under the impression that properties and links were separate arrays.
--
Melvin,
Yeah, that’s no problem. Links are in an array and it’s possible for more than one link to use the same link relation type. Further, the order of elements in the links array indicates an order of preference (if there is a preference).
Paul
--