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

Commit 849adf2

Browse files
authored
Merge pull request #7 from Ticketpark/wowza-1-dot-6
Update to use Wowza Cloud API v1.6
2 parents 8900514 + 062e2e4 commit 849adf2

12 files changed

Lines changed: 19 additions & 12 deletions

File tree

example/LiveStream/1-create.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

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

1414
$liveStream = (new LiveStream())
1515
->setName('My test stream')

example/LiveStream/2-fetch-all.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

1313
$response = (new FetchAllRequest($apiKey, $accessKey, false))
1414
->execute();

example/LiveStream/2-fetch-single.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

1313
$response = (new FetchRequest($apiKey, $accessKey, false))
1414
->setId('xxx')

example/LiveStream/3-update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

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

1414
$liveStream = (new LiveStream())
1515
->setId('xxx') // id of a live stream

example/LiveStream/4-delete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

1313
$response = (new DeleteRequest($apiKey, $accessKey, false))
1414
->setId('xxx') // id of a live stream

example/LiveStreamMetrics/1-fetch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

1313
$response = (new FetchRequest($apiKey, $accessKey, false))
1414
->setId('xxx') // id of a live stream

example/LiveStreamState/1-start.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

1313
$response = (new StartRequest($apiKey, $accessKey, false))
1414
->setId('xxx') // id of a live stream

example/LiveStreamState/2-fetch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

1313
$response = (new FetchRequest($apiKey, $accessKey, false))
1414
->setId('xxx') // id of a live stream

example/LiveStreamState/3-reset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

1313
$response = (new ResetRequest($apiKey, $accessKey, false))
1414
->setId('xxx') // id of a live stream

example/LiveStreamState/4-stop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

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

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

0 commit comments

Comments
 (0)