Good afternoon.
I’m trying to set up authorization using Discord. Right now I have something like these settings:
But I ran into some problems:
- “scope”: “identify+email” becomes scope=identify%2Bemail, but Discord Expects a plus sign there and crashes with the error “Incorrect scope”
- redirect_url becomes https%3A%2F%2Ferp%2Cphoenix-arma.ru%2Fapi%2Fmethod%2Ffrappe.integrations.oauth2_logins.login_via_discord, but for discord this is an uncorrected url, it expects https%3A%2F%2Ferp.phoenix-arma.ru%2Fapi%2Fmethod%2Ffrappe.integrations.oauth2_logins.login_via_discord
Simply put, there should be a dot for the subdomain, but it is escaped.
Is there any way to solve these problems?
I fix error with scope, I use space without plus.
But dot in subdomain also encoding.
How I can fix this?
I fix redirect_url.
I add full redirect path: https://erp.domain.ru/api/method/frappe.integrations.oauth2_logins.custom/discord
But, i have new error: incorrect_client
I defeated Discord OAuth.
But now I get the error:
frappe.exceptions.MandatoryError: [User, example@email.com]: first_name
You need additional scope. Generally “openid”. It will then return additional claims required to create user in frappe.
1 Like
No, this is the first thing I tried.
In principle, Discord does not provide the fields that frappe (first_name) expects, instead username could be written there.
Is there any way to do this using a server script or some other way without changing the source code?