3
http://localhost:7474/user/neo4j
,我收到消息:
{
"errors" : [ {
"message" : "No authorization header supplied.",
"code" : "Neo.ClientError.Security.AuthorizationFailed"
} ]
}
我搜索上neo4j文檔和它說:
Authenticate by sending a username and a password to Neo4j using HTTP Basic Auth. Requests should include an Authorization header, with a value of Basic <payload>, where "payload" is a base64 encoded string of "username:password".
Example request
GET http://localhost:7474/user/neo4j
Accept: application/json; charset=UTF-8
Authorization: Basic bmVvNGo6c2VjcmV0
Example response
200: OK
Content-Type: application/json; charset=UTF-8
我正在使用網絡瀏覽器查看信息,如何「包括授權標題」網頁瀏覽器(Firefox)?我不明白它說什麼。如何輸入這些示例請求?
好的答案。我還發現諸如[Postman](https://www.getpostman.com/)或[Fiddler](http://www.telerik.com/fiddler)等客戶有用。我沒有從屬關係,要麼我應該指出! – ceej
這意味着我必須使用工具將請求發送到API? – anhtv13
在curl的情況下,curl是一個簡單的命令工具,您可以使用它代替瀏覽器。 Postman是一款位於Chrome瀏覽器內部的實用程序,Fiddler是位於瀏覽器和外部世界之間的代理。一個簡單的方法是使用in-URL認證,如下所示:'http:// username:password @ localhost:7474/user/neo4j' –