diff --git a/src/snapchat.php b/src/snapchat.php index 7a2906b..1c2d551 100644 --- a/src/snapchat.php +++ b/src/snapchat.php @@ -2693,6 +2693,24 @@ public function markStoryViewed($id, $screenshot_count = 0) return is_null($result); } + /** + * Gets the Discover's channel list + * + * @return array + * An array of channels with all it's information + */ + public function getDiscoversChannelList() + { + // Make sure we're logged in and have a valid access token. + if(!$this->auth_token || !$this->username) + { + return FALSE; + } + $result = parent::get('/discover/channel_list?region=INTERNATIONAL'); + + return $result; + } + /** * Gets the best friends and scores of the specified users. *