Skip to content

Commit

Permalink
Restructured lessons
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidra committed Nov 3, 2024
1 parent bc43c7e commit 3b6e253
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions _episodes/02-Web APIs.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@ A URL (also sometimes known as a URI or Uniform Resource Indicator) is the compl


## URL query String
A query string is part of a URL that contains data to be sent to the server for filtering or requesting specific information. It starts after the ? character and consists of key-value pairs separated by &. For example:
A query string is part of a URL that contains data to be sent to the server for filtering or requesting specific information. It starts after the `?` character and consists of key-value pairs separated by `&`. For example:

**[https://www.youtube.com/watch?v=s7wmiS2mSXY&t=1m45s](https://www.youtube.com/watch?v=s7wmiS2mSXY&t=1m45s)**
![youtube URL](../assets/img/youtubeAPI.png)

v=s7wmiS2mSXY tells YouTube which video to display.
t=1m45s specifies the timestamp at which the video should start (1 minute and 45 seconds in).
- Key-value pairs:
- `v=s7wmiS2mSXY` tells YouTube which video to display.
- `t=1m45s` specifies the timestamp at which the video should start (1 minute and 45 seconds in).

## Protocols, HTTP & HTTPS

Expand Down

0 comments on commit 3b6e253

Please sign in to comment.