Adds right curl flag in example

The curl flag `-U` is used for:

> Specify the user name and password to use for proxy authentication.

This curl flag `-u` is used for:

> Specify the user name and password to use for server authentication.

This change adds the correct curl flag for using basic
authentication.
This commit is contained in:
Richard Zetterberg
2018-07-16 16:20:45 +02:00
parent b57d74e180
commit dfd1ce7445
7 changed files with 7 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ info:
```
curl
-U "ws@Company.YourCompany":"YourWsPassword" \
-u "ws@Company.YourCompany":"YourWsPassword" \
-H "Content-Type: application/json" \
...
```

View File

@@ -12,7 +12,7 @@ info:
```
curl
-U "ws@Company.YourCompany":"YourWsPassword" \
-u "ws@Company.YourCompany":"YourWsPassword" \
-H "Content-Type: application/json" \
...
```

View File

@@ -13,7 +13,7 @@ info:
```
curl
-U "ws@Company.YourCompany":"YourWsPassword" \
-u "ws@Company.YourCompany":"YourWsPassword" \
-H "Content-Type: application/json" \
...
```

View File

@@ -13,7 +13,7 @@ info:
```
curl
-U "ws@Company.YourCompany":"YourWsPassword" \
-u "ws@Company.YourCompany":"YourWsPassword" \
-H "Content-Type: application/json" \
...
```

View File

@@ -13,7 +13,7 @@ info:
```
curl
-U "ws@Company.YourCompany":"YourWsPassword" \
-u "ws@Company.YourCompany":"YourWsPassword" \
-H "Content-Type: application/json" \
...
```

View File

@@ -13,7 +13,7 @@ info:
```
curl
-U "ws@Company.YourCompany":"YourWsPassword" \
-u "ws@Company.YourCompany":"YourWsPassword" \
-H "Content-Type: application/json" \
...
```

View File

@@ -14,7 +14,7 @@ info:
```
curl
-U "ws@Company.YourCompany":"YourWsPassword" \
-u "ws@Company.YourCompany":"YourWsPassword" \
-H "Content-Type: application/json" \
...
```