Email or username:

Password:

Forgot your password?
dansup

One of the main reasons it took longer than expected to ship #signInWithMastodon is due to the max limit setting.

By default, a masto user will only be able to sign-in to 3 different Pixelfed instances.

This works by a centralized api that I run, to enforce the max limits across instances with ease.

Admins will be able to set their own max limit and opt-out of it entirely, choice is good 😉

7 comments
[DATA EXPUNGED]
dansup

Btw, the oauth scope we use for this is only "read", we cannot post on your behalf or other things, and the source will prove the limited data we use from your Mastodon account (bio, username, avatar, following)

Terence Eden

@dansup Will you be opening the code to the sign-in stuff?
I've tried to get Mastodon working with Auth0 and I just couldn't get my head around how to make it work.

dansup

@Edent Yes, of course.

You basically need to register an app at `/api/v1/apps` and use that to generate the oauth redirect url to get the token

Terence Eden

@dansup I see. Presumably you need to register an app on every instance that a user signs up from?

Go Up