/**
  * Sends the data to Google Analytics.
  *
  * @param array $gif_options The request's options(optionnal).
  */
 private function track($options)
 {
     if (!$this->client_id && !$this->account) {
         return;
     }
     $params = $this->buildRequestParameters($options);
     $url = static::ENDPOINTHOST . static::ENDPOINTPATH;
     return $this->request->get($url, $params);
 }