We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb0575 commit df68c1aCopy full SHA for df68c1a
modules/ROOT/pages/security/index.adoc
@@ -37,8 +37,19 @@ Finally we append `Basic` to the beginning to have the following as the final he
37
Authorization: Basic bmVvNGo6dmVyeXNlY3JldA==
38
----
39
40
+.How to base64 encode a string
41
+[%collapsible]
42
+====
43
+To base64 encode a string on a Linux or Mac machine, use the built-in `base64` command:
44
+
45
+[source, bash]
46
+----
47
+echo -n "neo4j:verysecret" | base64
48
49
50
-_Complete Request Example_
51
+[discrete]
52
+=== Complete Request Example
53
54
* *+POST+* +http://localhost:7474/db/neo4j/tx/commit+
55
* *+Accept:+* +application/json;charset=UTF-8+
0 commit comments