我正在使用Microsoft Bot Framework for Node.js开发一个机器人。
我用一个新的.bot文件更改了LUIS App,然后生成了一个新的botFileSecret,并使用Bot Framework Emulator在本地测试了我的机器人,一切正常。
然后,我收到此错误:
Error finding key for token.
Available keys: -----BEGIN RSA PUBLIC KEY-----
jwtTokenExtractor.ts:132
MIIBCgKCAQEAt3J1hnS4aRZaZGq5JUw1iKsHynCUV9lMBe2MDArXGeQlN+w8Xw9v
U6InqmPVvJsUVyUkKE0jzn4dYLcwbTuttQ0hmN+lzNfGol04KKMIVdtTs1P0wo/+
VyJ88EuWM3lvDxyTw1PLim14UJ1856zdp2/kZLOSy+B46K96ENJ8b2yCP/VHRTd3
...
-----END RSA PUBLIC KEY-----
JwtTokenExtractor.getIdentity:err!
jwtTokenExtractor.ts:69
NotBeforeError {name: "NotBeforeError", message: "jwt not active", date: Tue Apr 02 2019 09:58:08 GMT+0200 (Romance Dayligh…, stack: "NotBeforeError: jwt not active
at Object.modul…"}
jwtTokenExtractor.ts:69
BotFrameworkAdapter.processActivity(): 401 ERROR - NotBeforeError: jwt not active
botFrameworkAdapter.ts:555
(node:1888) UnhandledPromiseRejectionWarning: Error: NotBeforeError: jwt not active
warning.js:18
at BotFrameworkAdapter.processActivity (c:\Users\SP-Montassar\Desktop\quicktext\zoe2\node_modules\botbuilder\src\botFrameworkAdapter.ts:556:19)
at <anonymous>
at process._tickDomainCallback (internal/process/next_tick.js:229:7)
(node:1888) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
warning.js:18
(node:1888) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
研究之后,我在Bot Framework文档上发现this article,其中解释了如何解决机器人身份验证。
我跟进了步骤..
首先,我从Azure门户验证了应用程序ID和应用程序密码,然后删除了应用程序ID和应用程序密码。我已经验证了该漫游器可以正常启动。我通过命令行发送了此HTTP请求以检查身份验证:
curl -X POST \
https://login.microsoftonline.com/botframework.com/oauth2/v2.0/token \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'grant_type=client_credentials&client_id=<APP_ID>&client_secret=<APP_PWD>&scope=https://api.botframework.com/.default'
我收到了带有有效访问令牌的回复:
{
"token_type": "Bearer",
"expires_in": 3600,
"ext_expires_in": 3600,
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGGAKI..."
}
然后,在本教程的第三步中,我被阻止了,因为上面仍然有一些错误。
请为这个问题提供帮助吗?
答案 0 :(得分:0)
只需为.bot文件创建一个新的botFileSecret,即可解决此问题。
答案 1 :(得分:0)
对于其他任何遇到相同错误的人:NotBeforeError: jwt not active
,如果当前时间早于nbf声明,则会引发此错误。
比较您环境中的日期,后端/前端(如果适用)。