0

https://github.com/auth0/auth0-java/tree/master/examples/java-api

该链接显示 Auth0 + Java API 种子 github。与给定命令连接后,它指出“然后您可以尝试对http://localhost:3001/secured/ping执行 GET,如果您不在标头中发送 JWT,则会引发错误。” 我收到了这个错误,我不确定如何在标头中完成发送 JWT。

4

1 回答 1

1

您需要在 Authorization 标头中发送 JWT。例如:

GET /secured/ping HTTP/1.1
Host: localhost:3001
Authorization: Bearer eyJhbGciOiJI...
于 2015-04-13T13:44:54.690 回答