Skip to content

Commit d479c33

Browse files
committed
revert to old folder structure to PR is easier to review
1 parent 9e63169 commit d479c33

File tree

19 files changed

+658
-658
lines changed

19 files changed

+658
-658
lines changed

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ <h3>JavaScript</h3>
5757
<li><a href="js/lesson2/tutorial.html">Lesson 2 - Expressions, Loops and Arrays</a></li>
5858
<li><a href="js/lesson3/tutorial.html">Lesson 3 - Introduction to jQuery</a></li>
5959
<li><a href="js/lesson4/tutorial.html">Lesson 4 - Introduction to HTTP Requests and APIs</a></li>
60-
<li><a href="js/lesson5/tutorial.html">Lesson 5 - API's part 2 - Send yourself an SMS with Vonage</a></li>
61-
<li><a href="js/lesson6/tutorial.html">Lesson 6 - HTTP Requests, AJAX and APIs (part 2)</a></li>
62-
<li><a href="js/lesson7/tutorial.html">Lesson 7 - Drawing in Canvas</a></li>
63-
<li><a href="js/lesson8/tutorial.html">Lesson 8 - Introduction to Testing</a></li>
64-
<li><a href="js/lesson9/tutorial.html">Lesson 9 - Building your own app</a></li>
60+
<li><a href="js/lesson4a/tutorial.html">Lesson 4a - API's part 2 - Send yourself an SMS with Vonage</a></li>
61+
<li><a href="js/lesson5/tutorial.html">Lesson 5 - HTTP Requests, AJAX and APIs (part 2)</a></li>
62+
<li><a href="js/lesson6/tutorial.html">Lesson 6 - Drawing in Canvas</a></li>
63+
<li><a href="js/lesson7/tutorial.html">Lesson 7 - Introduction to Testing</a></li>
64+
<li><a href="js/lesson8/tutorial.html">Lesson 8 - Building your own app</a></li>
6565
</ul>
6666

6767
<h2 class="language-heading">Backend</h2>

js/lesson10/tutorial.md

Lines changed: 0 additions & 311 deletions
This file was deleted.

js/lesson4/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can view all requests issued by a website by going to the Network (or Net) t
3737

3838
![](assets/images/inspector_requests.png)
3939

40-
As part of the response, a request gives back a **status code**. You can use this to identify if the request was successful or not. Below is a list of the most common.
40+
As part of the response, a request gives back a **status code**. You can use this to identify if the request was successful or not. Below is a list of the most common status codes.
4141

4242
| Status code | Message | Description |
4343
| ------------| ------- | ------------ |

js/lesson4a/tutorial.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: page
3+
title: API's part 2 - Send yourself an SMS with Vonage
4+
---
5+
6+
### Goal
7+
8+
By the end of this tutorial you will have:
9+
10+
* Sent yourself an SMS using the Vonage API
11+
12+
## Refresh
13+
14+
From the previous tutorial you learnt how HTTP requests work, the different between **GET** and **POST** and status codes. If you need a refresher pop back to the previous tutorial to remind yourself.
15+
16+
## Exercise - Send yourself an SMS with the Vonage API
17+
18+
<img src="./assets/images/VonageLogo.png" alt="Vonage Logo" width="350px">
19+
20+
In the following Vonage API tutorial you will create an account, and send yourself an SMS. Just a heads up, it will involve you creating an account and giving your phone number.
21+
22+
When signing up select NodeJS as your language. NodeJS is a runtine enviroment that allows you to run JavaScript on the server than in the browser which is what you would've been doing if you've followed our first few JavaScript tutorials.
23+
24+
[Send yourself an SMS with the Vonage API](https://developer.nexmo.com/?utm_source=codebar&utm_campaign=Events&utm_medium=bitly&utm_source=Events)
25+
26+
---
27+
This ends our sponsored Vonage tutorial **API's part 2 - Send yourself an SMS with Vonage**. Is there something you don't understand? Try and go through the provided resources with your coach. If you have any feedback, or can think of ways to improve this tutorial [send us an email](mailto:feedback@codebar.io) and let us know.

0 commit comments

Comments
 (0)