Inheritance: extends AuthenticatedBaseRequest
 /**
  *
  * Search Tags
  *
  * @param string $query Tag to Search for
  * @return API\Response\SearchTagsResponse
  * @throws Exception
  */
 public function searchTags($query)
 {
     if (!$this->isLoggedIn()) {
         throw new InstagramException("You must be logged in to call searchTags().");
     }
     $request = new SearchTagsRequest($this, $query);
     $response = $request->execute();
     if (!$response->isOk()) {
         throw new InstagramException(sprintf("Failed to searchTags: [%s] %s", $response->getStatus(), $response->getMessage()));
     }
     return $response;
 }
 /**
  *
  * Search Tags
  *
  * @param string $query Tag to Search for
  * @return API\Response\SearchTagsResponse
  * @throws Exception
  */
 public function searchTags($query)
 {
     if (!$this->isLoggedIn()) {
         throw new InstagramException("You must be logged in to call searchTags().");
     }
     $request = new SearchTagsRequest($this, $query);
     $response = $request->execute();
     return $response;
 }