-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handling incoming slash command events #12
Comments
is your queue driver/connection set to The If you remove the |
As far as |
The Laravel 10.3.3 |
ok i'll upgrade to 10 and take a look this weekend, i think my testing app is v9 |
Thanks!
|
Here is a longer stack trace, if it helps.
|
apologies for the late response, but I've been unable to reproduce this issue even on L10. The only time I can get similar behavior is if I use the I know it's a lot to ask, but would you be able to see if you can replicate this on a fresh laravel project with just your new command and necessary supporting classes? |
Hi, I am running into the same issue on a L10 installation. Telescope informs me of a 500 error, and just as above Been debugging for hours, with no luck. |
So... Laravel telescope injects as a listener, which was causing the TypeError for me. HasInteractionListener:25 Nevertheless I am still getting Interaction Failed from discord, but can finally continue debugging this properly. Funny how this debug tool caused more issues.... I uninstalled it completely, not sure how to circumvent this one otherwise. |
Hello. I'm trying to setup my laravel to handle incoming slash command.
I was able to register the commands and execute then on Discord. However, when Discord queries my endpoint, nothing I do seems to be working.
Right now, I have a controller with the following:
Then I have a Listener with this:
And finally I modified my EventServiceProvider to this:
However, my endpoint calls from discord return an error. If I set shouldDiscoverEvents to true, the error is
If I set it to false, then I get :
I'm about to throw my laptop across the room... is there any way you can help? :P
The text was updated successfully, but these errors were encountered: