我做了一个简单的附加组件,现在我想对它进行签名,这样它就可以在开发人员模式之外工作。我阅读了 Mozilla 网站上的文档,但是当我尝试使用我的 API 密钥和秘密运行 jpm sign 命令时,出现此错误:
JPM [info] Created XPI for signing: C:UsersSTEFAN~1AppDataLocalTemptmp-unsigned-xpi-5168BFT2GMmLtNlm@ffe-1.0.0.xpi
JPM [error] FAIL
Error: Received bad response from the server while requesting https://addons.mozilla.org/api/v3/addons/%40ffe/versions/1.0.0/
status: 401
response: {"detail":"Unknown JWT iss (issuer)"}
headers: {"allow":"GET, PUT, HEAD, OPTIONS","content-security-policy":"script-src 'self' https://addons.mozilla.org https://www.paypalobjects.com https://apis.google.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://ssl.google-analytics.com https://addons.cdn.mozilla.net; default-src 'self'; img-src 'self' data: blob: https://www.paypal.com https://ssl.google-analytics.com https://addons.cdn.mozilla.net https://static.addons.mozilla.net https://ssl.gstatic.com/ https://sentry.prod.mozaws.net; media-src https://videos.cdn.mozilla.net; style-src 'self' 'unsafe-inline' https://addons.cdn.mozilla.net; frame-src 'self' https://ic.paypal.com https://paypal.com https://www.google.com/recaptcha/ https://www.paypal.com; object-src 'none'; connect-src 'self' https://sentry.prod.mozaws.net; font-src 'self' https://addons.cdn.mozilla.net; report-uri /__cspreport__","content-type":"application/json","date":"Tue, 15 Mar 2016 22:27:05 GMT","server":"nginx","set-cookie":["multidb_pin_writes=y; expires=Tue, 15-Mar-2016 22:27:20 GMT; Max-Age=15; Path=/"],"strict-transport-security":"max-age=31536000","vary":"X-Mobile, User-Agent","www-authenticate":"JWT realm="api"","x-content-type-options":"nosniff","x-frame-options":"DENY","x-xss-protection":"1; mode=block","content-length":"38","connection":"Close"}
at C:UsersstefanmarkovicAppDataRoamingnpmnode_modulesjpmlibamo-client.js:92:13
at tryCatchReject (C:UsersstefanmarkovicAppDataRoamingnpmnode_modulesjpmnode_moduleswhenlibmakePromise.js:845:30)
at runContinuation1 (C:UsersstefanmarkovicAppDataRoamingnpmnode_modulesjpmnode_moduleswhenlibmakePromise.js:804:4)
at Fulfilled.when (C:UsersstefanmarkovicAppDataRoamingnpmnode_modulesjpmnode_moduleswhenlibmakePromise.js:592:4)
at Pending.run (C:UsersstefanmarkovicAppDataRoamingnpmnode_modulesjpmnode_moduleswhenlibmakePromise.js:483:13)
at Scheduler._drain (C:UsersstefanmarkovicAppDataRoamingnpmnode_modulesjpmnode_moduleswhenlibScheduler.js:62:19)
at Scheduler.drain (C:UsersstefanmarkovicAppDataRoamingnpmnode_modulesjpmnode_moduleswhenlibScheduler.js:27:9)
at doNTCallback0 (node.js:419:9)
at process._tickCallback (node.js:348:13)
我不知道我做错了什么,因为我输入了 API 密钥JWT 颁发者:用户:********:***作为我输入的 API 机密JWT 秘密 :
******所以我的命令看起来像这样:
jpm sign --api-key ${user:*******:***} --api-secret ${**************************************************************}
您是否在命令中包含${}
?如果是这样,只需将其删除即可。
例如,如果您的api-key
是user:12345678:987
并且您的api-secret
是28934y23i4h32i4j23nk4j32443h
则您的命令应如下所示:
jpm sign --api-key user:12345678:987 --api-secret 28934y23i4h32i4j23nk4j3244
不:
jpm sign --api-key ${user:12345678:987} --api-secret ${28934y23i4h32i4j23nk4j3244}