Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ asciidoc:
neo4j-version: '4.4'
neo4j-version-exact: '4.4.4'
neo4j-buildnumber: '4.4'
neo4j-browser-version: '4.4.3'
neo4j-browser-version: '4.4.6'
docs-version: '4.4'
16 changes: 13 additions & 3 deletions docs/modules/ROOT/pages/operations/browser-url-parameters.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,29 @@ http://localhost:7474/browser?dbms=[connectionURL]&db=[databaseName]

.Connection URL and database
====
[source, browser URL, role=noheader]
----
http://localhost:7474/browser?dbms=neo4j://alice@localhost:7687&db=neo4j123
----
This pre-populates the connection frame with:

* Connect URL: `neo4j://localhost:7687`
* Database: `neo4j123`
* Username: `alice`
====

It is also possible to pre-populate the authorization method.

The syntax is:

[source, browser URL, role=noheader]
----
http://localhost:7474/browser?dbms=neo4j://alice@localhost:7687&db=neo4j123
http://localhost:7474/browser?preselectAuthMethod=[NATIVE]|[SSO]|[NO_AUTH]
----
====

** `[NATIVE]` is the regular username and password and is the default setting.
** `[SSO]` lets you sign in using SSO.
** `[NO_AUTH]` means that no authorization is required.

== Pre-populate the editor

Expand Down Expand Up @@ -114,4 +125,3 @@ http://localhost:7474/browser?cmd=param&arg=example=>1
http://localhost:7474/browser?cmd=params&arg={example:1,foo:"bar"}
----
====