Hi Bubble community,
I am trying to setup Bubble with an OAuth API and I cannot get it to work. I am using casdoor https://casdoor.org/ as an OAuth provider and below is my current setup
Here is an example output of the /get-account
endpoint:
{
"status": "ok",
"msg": "",
"sub": "4f89349a-275d-4753-88cf-714bbdeb4fb5",
"name": "user",
"data": {
"id": "4f89349a-275d-4753-88cf-714bbdeb4fb5",
"name": "user",
"email": "[email protected]",
...
}
After setting up the workflow and logging in through OAuth provider I get the following error:
âText too long for this fieldâ
My assumption is that because casdoor creates a fairly large JWT, the value of the token is too large for some setting in bubble. Is there a maximum length of the characters for the token? If so, can I increase this maximum?
I am currently on a free version to test things out and see if bubble will fit the requirements.
If not, should I look into ways to reduce the token size, generated from casdoor?
Thank you!