@@ -25,14 +25,6 @@ command line:
2525$ ./composer.phar require opentok/opentok 4.4.x
2626```
2727
28- ### Manually:
29-
30- Download the ` opentok.phar ` file for the latest release from the [ Releases] ( https://github.com/opentok/opentok-php-sdk/releases )
31- page.
32-
33- Place ` opentok.phar ` in the [ include_path] ( http://www.php.net/manual/en/ini.core.php#ini.include-path ) OR
34- require it in any script which uses the ` OpenTok\* ` classes.
35-
3628## Usage
3729
3830### Initializing
@@ -239,9 +231,9 @@ $archive->delete();
239231```
240232
241233You can also get a list of all the Archives you've created (up to 1000) with your API Key. This is
242- done using the ` listArchives($offset, $count) ` method of the ` OpenTok/OpenTok ` class. The parameters
243- ` $offset ` and ` $count ` are optional and can help you paginate through the results. This will return
244- an instance of the ` OpenTok\ArchiveList ` class.
234+ done using the ` listArchives($offset, $count, $sessionId ) ` method of the ` OpenTok/OpenTok ` class. The parameters
235+ ` $offset ` , ` $count ` , and ` $sessionId ` are optional and can help you paginate through the results, and subset the
236+ data by a specific session. This will return an instance of the ` OpenTok\ArchiveList ` class.
245237
246238``` php
247239$archiveList = $opentok->listArchives();
@@ -514,9 +506,7 @@ Reference documentation is available at
514506You need an OpenTok API key and API secret, which you can obtain by logging into your
515507[ TokBox account] ( https://tokbox.com/account ) .
516508
517- The OpenTok PHP SDK requires PHP 5.6+ or PHP 7+
518-
519- For PHP 5.5 and lower please use PHP SDK v2.5
509+ The OpenTok PHP SDK requires PHP 7.2 or higher.
520510
521511## Release Notes
522512
0 commit comments