You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/big-data-cluster/big-data-cluster-consume-apps.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,12 @@ In order to access the RESTful web service for the app you have deployed you fir
93
93
|GDR1|`https://[IP]:[PORT]/docs/swagger.json`|
94
94
|CU1 and later|`https://[IP]:[PORT]/api/v1/swagger.json`|
95
95
96
+
From the output of previous example, CU4 release and the IP address of controller (10.1.1.3 in the example) and the port number (30080), the URL would look like the following :
97
+
98
+
```bash
99
+
https://10.1.1.3 :30080/api/v1/swagger.json
100
+
```
101
+
96
102
> For version information, see [Release history](release-notes-big-data-cluster.md#release-history).
97
103
98
104
Open the appropriate URL in your browser using the IP address and port you retrieved running the [`describe`](#retrieve-the-endpoint) command above. Sign in with the same credentials you used for `azdata login`.
@@ -101,11 +107,19 @@ Paste the contents of the `swagger.json` into the [Swagger Editor](https://edito
Notice the `app` GET method as well as the `token` POST method. Since the authentication for apps uses JWT tokens, you will need to get a token my using your favorite tool to make a POST call to the `token` method. Here is an example of how to do just that in [Postman](https://www.getpostman.com/):
110
+
Notice the `app` is GET method and to get the `token` would use POST method. Since the authentication for apps uses JWT tokens, you will need to get a token my using your favorite tool to make a POST call to the `token` method. With the same example, the URL to get JWT token would look like the follows :
111
+
112
+
```bash
113
+
https://10.1.1.3 :30080/api/v1/token
114
+
```
115
+
116
+
117
+
Here is an example of how to do just that in [Postman](https://www.getpostman.com/):
0 commit comments