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 a6a96f1 commit 653b0f1Copy full SHA for 653b0f1
labs/coding-201-parsing-xml/1.md
@@ -32,7 +32,7 @@ To get started, create a simple Python script that sends an HTTP request to the
32
3. Within the text editor add the following lines to `get-ap-xml.py`:
33
```
34
from urllib.request import Request, urlopen
35
-req = Request('https://msesandbox.cisco.com/api/contextaware/v1/maps/info/DevNetCampus/DevNetBuilding/DevNetZone')
+req = Request('https://cmxlocationsandbox.cisco.com/api/contextaware/v1/maps/info/DevNetCampus/DevNetBuilding/DevNetZone')
36
req.add_header('Authorization', 'Basic bGVhcm5pbmc6bGVhcm5pbmc==')
37
response = urlopen(req)
38
responseString = response.read().decode("utf-8")
0 commit comments