Missing routes for Slack oAuth
I want to allow my users to authenticate using their Slack account (not as a main auth method though), rather as kind of integration.
I have set up these routes in main.wasp:
// 2a) Slack OAuth: Auth-Redirect
route SlackAuthRoute { path: "/slack/auth", to: SlackAuthPage }
page SlackAuthPage {
component: import SlackAuthPage from "@src/client/app/SlackAuthPage.jsx",
authRequired: false
}
// 2b) Slack OAuth: Callback
route SlackCallbackRoute { path: "/slack/callback", to: SlackCallbackPage }
page SlackCallbackPage {
component: import SlackCallbackPage from "@src/client/app/SlackCallbackPage.jsx",
authRequired: false
}
But somehow, when trying to reach these pages (as part of the authentication process) I get this error on the pages:
$d
data
:
"Error: No route matches URL "/slack/callback""
error
:
Error: No route matches URL "/slack/callback" at vn (https://linkforce.io/assets/index-LRfPohIU.js:58:10991) at VN (https://linkforce.io/assets/index-LRfPohIU.js:57:11080) at L4 (https://linkforce.io/assets/index-LRfPohIU.js:76:792) at https://linkforce.io/assets/index-LRfPohIU.js:211:28465
internal
:
true
status
:
404
statusText
:
"Not Found"
[[Prototype]]
:
Object
constructor
:
class $d
[[Prototype]]
:
Object
I have set up these routes in main.wasp:
// 2a) Slack OAuth: Auth-Redirect
route SlackAuthRoute { path: "/slack/auth", to: SlackAuthPage }
page SlackAuthPage {
component: import SlackAuthPage from "@src/client/app/SlackAuthPage.jsx",
authRequired: false
}
// 2b) Slack OAuth: Callback
route SlackCallbackRoute { path: "/slack/callback", to: SlackCallbackPage }
page SlackCallbackPage {
component: import SlackCallbackPage from "@src/client/app/SlackCallbackPage.jsx",
authRequired: false
}
But somehow, when trying to reach these pages (as part of the authentication process) I get this error on the pages:
$d
data
:
"Error: No route matches URL "/slack/callback""
error
:
Error: No route matches URL "/slack/callback" at vn (https://linkforce.io/assets/index-LRfPohIU.js:58:10991) at VN (https://linkforce.io/assets/index-LRfPohIU.js:57:11080) at L4 (https://linkforce.io/assets/index-LRfPohIU.js:76:792) at https://linkforce.io/assets/index-LRfPohIU.js:211:28465
internal
:
true
status
:
404
statusText
:
"Not Found"
[[Prototype]]
:
Object
constructor
:
class $d
[[Prototype]]
:
Object