You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
Hey, I have a skill that is based on ASK SDK for Java and I'm trying to interact with it using bst.
The problem I'm facing is that all the requests are rejected with the following error Error: Invalid response: 400 Message: Missing signature/certificate for the provided skill request.
I saw that in the documentation you're recommending to run Java skills with -DdisableRequestSignatureCheck=true parameter, but I don't believe it applies to the ASK SDK (at least not it's current version).
Is there a way to work around this and make bst launch/intent/etc work for the skill using this platform?
The text was updated successfully, but these errors were encountered:
Yes, I am not sure how to disable the signature checking on the latest version. It appears the disableSignatureCheck flag went away with version one. I'm looking for how to do it on V2. No luck so far.
And set it to an empty list. Though there is a constructor for passing in custom verifiers, it is not accessible. But you can use reflection on the field pretty easily to set that field (verifiers) to an empty list. Hope that makes sense - and I realize it is a hack (though a fairly simple one).
If I have the time I will send the maintainers a PR to keep using the old flag.
Hey, I have a skill that is based on ASK SDK for Java and I'm trying to interact with it using
bst
.The problem I'm facing is that all the requests are rejected with the following error
Error: Invalid response: 400 Message: Missing signature/certificate for the provided skill request
.I saw that in the documentation you're recommending to run Java skills with
-DdisableRequestSignatureCheck=true
parameter, but I don't believe it applies to the ASK SDK (at least not it's current version).Is there a way to work around this and make
bst launch/intent/etc
work for the skill using this platform?The text was updated successfully, but these errors were encountered: