Skip to content

Commit b988f0b

Browse files
committed
Added section, sectiongroup, pages, wopi and page patch requests.
Added section, sectiongroup, pages, wopi and page patch requests.
1 parent eb230be commit b988f0b

10 files changed

+428
-57
lines changed

Collections/OneNote API.postman_collection.json

+378-41
Large diffs are not rendered by default.

Environments/Edog.postman_environment.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "f3412c23-7847-462a-bda2-fa162942363c",
2+
"id": "82ad4071-7c74-4f70-af33-b08d83cbb64f",
33
"name": "Edog",
44
"values": [
55
{
@@ -29,6 +29,6 @@
2929
}
3030
],
3131
"_postman_variable_scope": "environment",
32-
"_postman_exported_at": "2018-10-16T17:43:26.584Z",
33-
"_postman_exported_using": "Postman/6.4.2"
32+
"_postman_exported_at": "2018-11-01T01:45:01.846Z",
33+
"_postman_exported_using": "Postman/6.4.4"
3434
}

Environments/Local.postman_environment.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
}
2929
],
3030
"_postman_variable_scope": "environment",
31-
"_postman_exported_at": "2018-10-16T16:55:52.546Z",
32-
"_postman_exported_using": "Postman/6.4.2"
31+
"_postman_exported_at": "2018-11-01T01:44:59.238Z",
32+
"_postman_exported_using": "Postman/6.4.4"
3333
}

Environments/Production_Beta-JPW.postman_environment.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,16 @@
3131
"value": "{{Prod_AuthToken}}",
3232
"description": "",
3333
"enabled": true
34+
},
35+
{
36+
"key": "WOPIVersion",
37+
"value": "v1",
38+
"type": "text",
39+
"description": "",
40+
"enabled": true
3441
}
3542
],
3643
"_postman_variable_scope": "environment",
37-
"_postman_exported_at": "2018-10-16T16:56:06.667Z",
38-
"_postman_exported_using": "Postman/6.4.2"
44+
"_postman_exported_at": "2018-11-01T01:44:53.740Z",
45+
"_postman_exported_using": "Postman/6.4.4"
3946
}

Environments/Production_Beta.postman_environment.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,16 @@
2525
"value": "{{Prod_AuthToken}}",
2626
"description": "",
2727
"enabled": true
28+
},
29+
{
30+
"key": "WOPIVersion",
31+
"value": "v1",
32+
"type": "text",
33+
"description": "",
34+
"enabled": true
2835
}
2936
],
3037
"_postman_variable_scope": "environment",
31-
"_postman_exported_at": "2018-10-16T16:56:02.974Z",
32-
"_postman_exported_using": "Postman/6.4.2"
38+
"_postman_exported_at": "2018-11-01T01:44:56.741Z",
39+
"_postman_exported_using": "Postman/6.4.4"
3340
}

Environments/Production_v1.0.postman_environment.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,16 @@
2525
"value": "{{Prod_AuthToken}}",
2626
"description": "",
2727
"enabled": true
28+
},
29+
{
30+
"key": "WOPIVersion",
31+
"value": "v1",
32+
"type": "text",
33+
"description": "",
34+
"enabled": true
2835
}
2936
],
3037
"_postman_variable_scope": "environment",
31-
"_postman_exported_at": "2018-10-16T16:56:09.316Z",
32-
"_postman_exported_using": "Postman/6.4.2"
38+
"_postman_exported_at": "2018-11-01T01:44:33.259Z",
39+
"_postman_exported_using": "Postman/6.4.4"
3340
}

README.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,29 @@
2525

2626
![Manage_Environments-Import](/img/Collection-Variables.gif)
2727

28-
b.- Go back into the "Manage Environments" menu and click on the "Globals" button. Here you will see the two different types of AuthTokens used to contact Production or PPE environments.
29-
Add the necessary auth tokens to these variables (CURRENT VALUE ONLY) and hit save.
30-
28+
b.- Go back into the "Manage Environments" menu and click on the "Globals" button. Here you will see the two different types of AuthTokens used to contact Production or PPE environments.
3129
![Manage_Environments-Import](/img/Manage_Environments-Globals.gif)
3230

33-
The AuthTokens will expire after a while so you will have to come back and update their values every time
34-
that happens.
31+
You can use the ticketizer tool to create the AuthTokens: http://toolbox/ticketizer
32+
Open the tool, go to the ADAL tab and hit the "Ticket Please!!" button to the right:
33+
![Manage_Environments-Import](/img/CreateAuthToken.gif)
34+
35+
This will generate a token for the production environment token. Copy the token from there and paste it in the "Prod_AuthToken" variable current value.
36+
You can also generate a token for the "PPE_AuthToken" variable by clicking in the "INT/PPE" radio button in ticketizer before generating the token.
37+
![Manage_Environments-Import](/img/CreateAuthToken_PPE.gif)
38+
39+
Add the necessary auth tokens to these variables (CURRENT VALUE ONLY) and hit save.
40+
41+
The AuthTokens will expire after a while so you will have to come back and update their values every time
42+
that happens.
3543

3644
Now you should be able to open any of the requests and hit the Send button to execute.
3745

46+
# Configuring SSL
47+
48+
Your local devfabric deployment won't be reachable if we don't disable the use of "SSL certificate verification". To do this go to File > Settings > General and turn off the "SSL certificate verification".
49+
![Manage_Environments-Import](/img/DisableSSL.gif)
50+
3851
# Contributing
3952

4053
This project welcomes contributions and suggestions. Most contributions require you to agree to a

img/CreateAuthToken.gif

168 KB
Loading

img/CreateAuthToken_PPE.gif

175 KB
Loading

img/DisableSSL.gif

177 KB
Loading

0 commit comments

Comments
 (0)