如何获得 Neo4j 2.2 Auth/API 令牌
How to get Neo4j 2.2 Auth/API Token
有没有办法从 REST API 检索 API 令牌?
我想使用py2neo set_auth_token方法。
博客 post 指出服务器命令会 return api 令牌,但事实并非如此。
:server connect
它只列出了我的用户。
我安装了全新的 Neo4j 2.2,没有更改任何配置。不幸的是,关于 api 令牌功能的文档不是很详细,或者我没有找到正确的页面。我发现的是:http://neo4j.com/docs/snapshot/rest-api-security.html
基于令牌的方法已在 M4 中删除。
只需使用用户名和密码
您必须在请求 headers 中将 username:password
的 base64
编码字符串传递为 Authentication: Basic bAZenKo0dedString==
。
使用用户名 foo、密码 bar 的示例请求(使用 Postman)
字符串 Zm9vOmJhcg==
是字符串 foo:bar
的 base64 编码值
此致!
有没有办法从 REST API 检索 API 令牌?
我想使用py2neo set_auth_token方法。
博客 post 指出服务器命令会 return api 令牌,但事实并非如此。
:server connect
它只列出了我的用户。
我安装了全新的 Neo4j 2.2,没有更改任何配置。不幸的是,关于 api 令牌功能的文档不是很详细,或者我没有找到正确的页面。我发现的是:http://neo4j.com/docs/snapshot/rest-api-security.html
基于令牌的方法已在 M4 中删除。 只需使用用户名和密码
您必须在请求 headers 中将 username:password
的 base64
编码字符串传递为 Authentication: Basic bAZenKo0dedString==
。
使用用户名 foo、密码 bar 的示例请求(使用 Postman)
字符串 Zm9vOmJhcg==
是字符串 foo:bar
此致!