Skip to content

Commit 653b0f1

Browse files
authored
Update 1.md
1 parent a6a96f1 commit 653b0f1

File tree

1 file changed

+1
-1
lines changed
  • labs/coding-201-parsing-xml

1 file changed

+1
-1
lines changed

labs/coding-201-parsing-xml/1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To get started, create a simple Python script that sends an HTTP request to the
3232
3. Within the text editor add the following lines to `get-ap-xml.py`:
3333
```
3434
from urllib.request import Request, urlopen
35-
req = Request('https://msesandbox.cisco.com/api/contextaware/v1/maps/info/DevNetCampus/DevNetBuilding/DevNetZone')
35+
req = Request('https://cmxlocationsandbox.cisco.com/api/contextaware/v1/maps/info/DevNetCampus/DevNetBuilding/DevNetZone')
3636
req.add_header('Authorization', 'Basic bGVhcm5pbmc6bGVhcm5pbmc==')
3737
response = urlopen(req)
3838
responseString = response.read().decode("utf-8")

0 commit comments

Comments
 (0)