Skip to content

Commit f1196e8

Browse files
committed
link fixes
1 parent 736aaad commit f1196e8

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

labs/coding-101-rest-basics-ga/3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The steps for using the APIC-EM authentication token are:
3838

3939
1. Create a ticket
4040
2. A ticket (token) is returned in response body.
41-
3. Include this token in the X-Auth-Token header on all subsequent requests.
41+
3. Include this token in the 'X-Auth-Token' header on all subsequent requests.
4242

4343
### Using the API Reference Documentation ###
4444

@@ -63,7 +63,7 @@ Let's take a look at the Ticket API in APIC-EM.
6363
The API Reference includes information data attributes to be sent and returned. The returned data is defined in the Response portion which includes the HTTP status codes along with the data format and attributes to be returned.
6464

6565
* HTTP Status Codes
66-
* HTTP status codes are used to return success, error, or other statuses. <http://www.w3.org/Protocols/HTTP/HTRESP.html>
66+
* HTTP status codes are used to return success, error, or other statuses. [http://www.w3.org/Protocols/HTTP/HTRESP.html](http://www.w3.org/Protocols/HTTP/HTRESP.html)
6767
* Some common examples are:
6868
* 200 OK
6969
* 202 Accepted/Processing

labs/coding-101-rest-basics-ga/4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To get the service ticket our request will look like this:
3939
* Substitute {APIC-EM-Server} in the address for the APIC-EM controller you are using
4040
* If you are not using your own APIC-EM controller, use the Always-On APIC-EM Lab: ![https://devnetapi.cisco.com/sandbox/apic_em]()
4141
* **Headers**
42-
* For POST calls the Content-Type must be specified as application/json in the header. Its typical to include this header for all REST method (GET, POST, PUT, DELETE …etc) calls.
42+
* For POST calls the 'Content-Type' must be specified as 'application/json' in the header. It's typical to include this header for all REST method (GET, POST, PUT, DELETE …etc) calls.
4343
* **Authentication**
4444
* In this API call the authentication data is passed in the body.
4545
* **Body**

labs/coding-101-rest-basics-ga/7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Step 7. Getting the Network Hosts
22

33
1. Setting up the API Call in Postman
4-
* Now, lets use the service ticket to authorize a request to GET the hosts from the controller.<br/><br/>
4+
* Now, let's use the service ticket to authorize a request to GET the hosts from the controller.<br/><br/>
55
![](/posts/files/coding-101-rest-basics-ga/assets/images/postman4.png)<br/><br/>
66

77
2. Enter the information as shown below for our request to retrieve the list of hosts into the appropriate Postman fields:

labs/coding-101-rest-basics-ga/8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Let's take a look at the Get Network Devices REST API call. A Network Device tr
55
You can look at the details of the Get Network Device API from the -- <a href="http://devnetapic.cisco.com/" target="_blank">APIC-EM API Docs</a>.
66

77
1. Setting up the API Call in Postman
8-
* Now, lets use the service ticket to authorize a request to GET the network devices from the controller. <br/></br/>
8+
* Now, let's use the service ticket to authorize a request to GET the network devices from the controller. <br/></br/>
99
![](/posts/files/coding-101-rest-basics-ga/assets/images/postman6.png)<br/><br/>
1010
2. Enter the information as shown below for our request to retrieve the list of network devices into the appropriate Postman fields:
1111
* **Method**

labs/coding-102-rest-python-ga/1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Completion Time: 35 minutes
1414
## Prerequisites
1515

1616
**Background**
17-
* We recommend that you complete the [Coding 101 Rest Basics Learning Lab](/#/lab/coding-101-rest-basics-ga/step/1) before you start this lab.
17+
* We recommend that you complete the [Coding 101 Rest Basics Learning Lab](/lab/coding-101-rest-basics-ga/step/1) before you start this lab.
1818

1919
**Access to an APIC-EM Controller**
2020
* To run these code samples, you will need access to an APIC-EM controller.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Coding 201: Parsing XML using Python #
33

4-
In this Learning Lab you will learn the basics of parsing XML content using Python. We will use the [CMX Mobility Services](https://developer.cisco.com/site/cmx-mobility-services/ "CMX Mobility Services") as a data source and query for the names of the available access points and put them into a simple list for display. If you want to dig deeper into CMX, review the [Mobility Services Engine (MSE) Learning Lab](#/labs/cmx/step/1).
4+
In this Learning Lab you will learn the basics of parsing XML content using Python. We will use the [CMX Mobility Services](https://developer.cisco.com/site/cmx-mobility-services/ "CMX Mobility Services") as a data source and query for the names of the available access points and put them into a simple list for display. If you want to dig deeper into CMX, review the [Mobility Services Engine (MSE) Learning Lab](lab/cmx/step/1).
55

66

77
## Objectives ##
@@ -15,7 +15,7 @@ Completion Time: 20 minutes
1515

1616
## Prerequisites
1717

18-
You will want to make sure you have gone through the [Coding 101 lab](#/labs/coding-101-rest-basics/step/1 "Coding 101 Lab") if you are unfamiliar with Python and retrieving results from a RESTful service.
18+
You will want to make sure you have gone through the [Coding 101 lab](lab/coding-101-rest-basics/step/1 "Coding 101 Lab") if you are unfamiliar with Python and retrieving results from a RESTful service.
1919

2020
You should also have a basic familiarity with XML. If you do not, consider visiting the [W3Schools XML Tutorial](http://www.w3schools.com/xml "W3Schools XML Tutorial") to get a firm base to build upon.
2121

0 commit comments

Comments
 (0)