Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Update links in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
sprain committed Feb 24, 2021
1 parent b49c5f0 commit 062e2e4
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion example/LiveStream/1-create.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


// Create a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/createLiveStream
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/createLiveStream

$liveStream = (new LiveStream())
->setName('My test stream')
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStream/2-fetch-all.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Fetch all live streams
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/listLiveStreams
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/listLiveStreams

$response = (new FetchAllRequest($apiKey, $accessKey, false))
->execute();
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStream/2-fetch-single.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Fetch details of a single livestream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/showLiveStream
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/showLiveStream

$response = (new FetchRequest($apiKey, $accessKey, false))
->setId('xxx')
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStream/3-update.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


// Update a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/updateLiveStream
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/updateLiveStream

$liveStream = (new LiveStream())
->setId('xxx') // id of a live stream
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStream/4-delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Delete a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/deleteLiveStream
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/deleteLiveStream

$response = (new DeleteRequest($apiKey, $accessKey, false))
->setId('xxx') // id of a live stream
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStreamMetrics/1-fetch.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Fetch the metrics of a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/showLiveStreamStats
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/showLiveStreamStats

$response = (new FetchRequest($apiKey, $accessKey, false))
->setId('xxx') // id of a live stream
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStreamState/1-start.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Start a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/startLiveStream
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/startLiveStream

$response = (new StartRequest($apiKey, $accessKey, false))
->setId('xxx') // id of a live stream
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStreamState/2-fetch.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Fetch the state of a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/showLiveStreamState
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/showLiveStreamState

$response = (new FetchRequest($apiKey, $accessKey, false))
->setId('xxx') // id of a live stream
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStreamState/3-reset.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Reset a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/resetLiveStream
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/resetLiveStream

$response = (new ResetRequest($apiKey, $accessKey, false))
->setId('xxx') // id of a live stream
Expand Down
2 changes: 1 addition & 1 deletion example/LiveStreamState/4-stop.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


// Stop a live stream
// https://api.docs.cloud.wowza.com/v1.5/tag/live_streams#operation/stopLiveStream
// https://api.docs.cloud.wowza.com/current/tag/live_streams#operation/stopLiveStream

$response = (new StopRequest($apiKey, $accessKey, false))
->setId('xxx') // id of a live stream
Expand Down

0 comments on commit 062e2e4

Please sign in to comment.