From d40f4f8d870e38d16dc6d6224b1777b3a9c71e73 Mon Sep 17 00:00:00 2001 From: Michael Roterman Date: Sat, 18 Jan 2014 17:22:42 +0100 Subject: [PATCH] Updating README to reflect latest change to support https --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5686e4a1..f23da90d 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,12 @@ $token = new \Tmdb\ApiToken('your_tmdb_api_key_here'); $client = new \Tmdb\Client($token); ``` +Or if you prefer requests to happen securely: + +```php +$client = new \Tmdb\Client($token, null, true); +``` + Then you pass this client onto one of the many repositories and do some work on it. ```php