format and location of 'indieweb' "me" links #79
-
using urara where do i place the links needed to verify the site as 'me' ... |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
You can look at the Head Config chapter in #31 for instructions on this, but I don’t know the detailed process, so I can’t give you much advice. Also, @kwaa has an article about this, but it's not written in English, you may need to use a translator. |
Beta Was this translation helpful? Give feedback.
-
hey all! i was able to login to indieweb site by adding the required 'me' links as in: i created an 'indieweb' folder and page in github required an email verification. |
Beta Was this translation helpful? Give feedback.
-
When I verify your site's - <a href="https://github.com/douglasjsmith404" rel="me">@douglasjsmith404 on Github</a> worked. However, this is only for the If you want all pages of your site to support Indielogin login, then you should modify the export const head: HeadConfig = {
custom: ({ dev }) =>
dev
?[]
:[
// The HTML tags filled in here will be added to the <head> tag of the website without modification
// IndieAuth
'<link rel="authorization_endpoint" href="https://indieauth.com/auth">',
'<link rel="token_endpoint" href="https://tokens.indieauth.com/token">',
],
me: [
// It will be formatted as `<link rel="me" href="url">` and added to the <head> tag of the website
// Fill in the URL that supports Indielogin
'https://github.com/username',
'https://twitter.com/username'
]
} |
Beta Was this translation helpful? Give feedback.
When I verify your site's
douglasjsmith404.com/indieweb
directory on the indielogin.com website, it requests GitHub verification normally, which should be theworked.
However, this is only for the
douglasjsmith404.com/indieweb
directory, because other pages in your site do not haverel="me"
information, for example, you are in indielogin.com When authenticating using your site's homepagedouglasjsmith404.com
, you get the error "We couldn't find any way to authenticate you using your website." Is this what you expected?If you want all pages of your site to support Indielogin login, then you should mod…