PluginProbe
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO / 2.7.0
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO v2.7.0
2.7.0 2.6.0 2.5.0 2.4.0 2.3.0 2.2.0 2.1.1 2.1.0 2.0.2 2.0.1 2.0.0 1.32.0 1.31.0 1.30.0 1.29.0 1.28.0 1.27.0 1.26.0 1.25.0 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.10.0 All 48 releases
← All changes | includes/integrations/class-google-analytics-client.php +2 -5 1.10.02.7.0 View file →
@@ -149,13 +149,10 @@
149 149 }
150 150
151 151 $full_url = self::API_BASE_URL . $endpoint;
152 152
153 - // Only append API key if no access token is present
154 - if (!empty($this->api_key) && empty($this->access_token)) {
155 - $full_url .= '?key=' . $this->api_key;
156 - }
157 -
153 + // The API key is sent by make_request() in the x-goog-api-key header — never
154 + // in the query string, which is captured by proxy/access logs.
158 155 return $this->make_request($full_url, $request_body, 'POST');
159 156 }
160 157
161 158 /**