Current Events > Q for programmers: How does the owner of a website track what you google?

Topic List
Page List: 1
Vhagar995
04/16/23 4:16:02 PM
#1:


Let's say you own gamefaqs..

Everytime I google "whatever" plus the word "gamefaqs" , does the owner of the website actually reads what you searched for?

Or is it basically just encrypted data that automatically gets saved but not read and just used to feed you the same type of things you searched for in the future?

... Copied to Clipboard!
Tyranthraxus
04/16/23 4:20:46 PM
#2:


There's different ways. If you're coming from Google the most common way is in the query string.

You know how you might see some urls that are like blablah.com/blah?fbclid=fh4dyd5vfu7fjerh8vfat==&ref=google or something similar?

That's tracking where you came from and what you did to get where you are.

You can basically delete the stuff after the ? If you know what to look for.

---
It says right here in Matthew 16:4 "Jesus doth not need a giant Mecha."
https://i.imgur.com/dQgC4kv.jpg
... Copied to Clipboard!
CommonStar
04/16/23 4:23:53 PM
#3:


tracking cookies
... Copied to Clipboard!
Vhagar995
04/16/23 4:27:16 PM
#4:


What I am asking is does the person who owns a website actually see anything a person searches for if they include the name of the website in their search.

If yes, how? Like do they get like a list with aaall the searches people have made?

... Copied to Clipboard!
Solar_Crimson
04/16/23 4:28:19 PM
#5:


Vhagar995 posted...
What I am asking is does the person who owns a website actually see anything a person searches for if they include the name of the website in their search.
No, because you're not actually accessing the website. And even then, they couldn't see what you're searching.

---
Eat the rich
Destroy the GOP
... Copied to Clipboard!
Tyranthraxus
04/16/23 4:31:36 PM
#6:


Vhagar995 posted...
What I am asking is does the person who owns a website actually see anything a person searches for if they include the name of the website in their search.

If yes, how? Like do they get like a list with aaall the searches people have made?

Oh. That's information contained in Google analytics if you use it. If you don't, you have no way of knowing what they searched.

---
It says right here in Matthew 16:4 "Jesus doth not need a giant Mecha."
https://i.imgur.com/dQgC4kv.jpg
... Copied to Clipboard!
Vhagar995
04/16/23 4:51:42 PM
#7:


Tyranthraxus posted...
Oh. That's information contained in Google analytics if you use it. If you don't, you have no way of knowing what they searched.
So if the owner of the website has "google analytics" he can literally see what people google about his website?
... Copied to Clipboard!
Tyranthraxus
04/16/23 5:00:42 PM
#8:


Vhagar995 posted...
So if the owner of the website has "google analytics" he can literally see what people google about his website?

It's been a super long time since I've had access to a website that used Google analytics and Google has dramatically changed how they parse searches and use SEO to deliver your website as a result but that information was available once upon a time. I don't know if it still is.

---
It says right here in Matthew 16:4 "Jesus doth not need a giant Mecha."
https://i.imgur.com/dQgC4kv.jpg
... Copied to Clipboard!
Vhagar995
04/18/23 10:15:21 PM
#9:


Tyranthraxus posted...
It's been a super long time since I've had access to a website that used Google analytics and Google has dramatically changed how they parse searches and use SEO to deliver your website as a result but that information was available once upon a time. I don't know if it still is.


Do you think you tell me what this means basically? It's their "privacy" message.

Your information is collected via two ways. Firstly, by browsing this site will cause the phpBB software to create a number of cookies, which are small text files that are downloaded on to your computers web browser temporary files. The first two cookies just contain a user identifier (hereinafter user-id) and an anonymous session identifier (hereinafter session-id), automatically assigned to you by the phpBB software. A third cookie will be created once you have browsed topics within This site and is used to store which topics have been read, thereby improving your user experience.

We may also create cookies external to the phpBB software whilst browsing this site, though these are outside the scope of this document which is intended to only cover the pages created by the phpBB software. The second way in which we collect your information is by what you submit to us.

the parts that I bolded are the ones that sound like the owners on the site can see what you googled, as long as you typed the site's name
... Copied to Clipboard!
Questionmarktarius
04/18/23 10:18:32 PM
#10:


utm_keyword is the go-to.
... Copied to Clipboard!
Vhagar995
04/18/23 10:19:09 PM
#11:


Questionmarktarius posted...
utm_keyword is the go-to.
Go to for what
... Copied to Clipboard!
Questionmarktarius
04/18/23 10:26:07 PM
#12:


Vhagar995 posted...
Go to for what
if someone goes to your website via google, utm_keyword may be in the querystring on first arrival.
php has it in the $_GET and $_REQUEST globals, and other backends are similar. However, you have to capture it immediately or it's lost on the first internal link.
... Copied to Clipboard!
Lokison
04/18/23 10:26:49 PM
#13:


The bolded parts are basically saying:

Cookie1 is for you as an individual on the site, to help track traffic and see how many users at any given time are on your site.

Cookie2 is used to see WHEN you use the site, to understand how often you use the site, and when surges of users are on the site.

Cookie3 is used to log key strokes on the site, and where/what you click. This is used to determine what users are there for, and to tell which ads are useful, and which aren't (how often ads are clicked, which ones, etc) and are often sold off so other sites (like google) and create an algorithm to determine what you do next.

Nothing there is anything to do with Google, unless (as @Tyranthraxus said) is has that weird ending to it that is used to tell the site how the website was located.

---
Word from the wise: Don't drink the under-sink-juice.
... Copied to Clipboard!
Questionmarktarius
04/18/23 10:43:18 PM
#14:


3rd-party are entirely unreliable now and may not exist.
But now I have to ask, why do you need to know that?
... Copied to Clipboard!
Vhagar995
04/18/23 10:50:44 PM
#15:


Lokison posted...
Nothing there is anything to do with Google, unless (as @Tyranthraxus said) is has that weird ending to it that is used to tell the site how the website was located
Ohhhh. I don't why but the phrase "by browsing this site" is what sounded to me like they meant "searching on google the site's name" .

That's why it seemed odd

... Copied to Clipboard!
TheMikh
04/18/23 10:51:19 PM
#16:


http request referrer or similar GET (or maybe POST) based params
or malware

---
http://i.imgur.com/A0TAfek.png
... Copied to Clipboard!
Vhagar995
04/18/23 10:53:31 PM
#17:


Questionmarktarius posted...
if someone goes to your website via google, utm_keyword may be in the querystring on first arrival.
php has it in the $_GET and $_REQUEST globals, and other backends are similar. However, you have to capture it immediately or it's lost on the first internal link.
Im sorry i dont understand any of that , I dont know anything about programming language
Questionmarktarius posted...


But now I have to ask, why do you need to know that?
Basically it stood out to me that they would know what you googled and I found it weird that's why I wanted to ask to someone who knows better
... Copied to Clipboard!
Vhagar995
04/18/23 10:53:59 PM
#18:


TheMikh posted...
http request referrer or similar GET (or maybe POST) based params
or malware
Sorry what does that mean?
... Copied to Clipboard!
Questionmarktarius
04/18/23 10:55:36 PM
#19:


Vhagar995 posted...
Basically it stood out to me that they would know what you googled and I found it weird that's why I wanted to ask to someone who knows better
Where is this coming from? Curiosity? Paranoia?
... Copied to Clipboard!
TheMikh
04/18/23 11:10:09 PM
#20:


Vhagar995 posted...
Sorry what does that mean?
been a little while since i've done webdev, but basically when you click a link, it makes a request to the server the link points to and passes certain "header" data as part of that request, including "referrer" which is the page/site it came from.

GET params refer to the fields in the URL, which also pass along information to the server.

POST params are processed in a similar manner to GET params by the server under the hood, but instead of being passed by URL, they're are passed by way of form submissions or AJAX requests.

and well, malware - whether in your system or in browser extensions - can track your browsing activity.

---
http://i.imgur.com/A0TAfek.png
... Copied to Clipboard!
Questionmarktarius
04/18/23 11:12:48 PM
#21:


TheMikh posted...
been a little while since i've done webdev, but basically when you click a link, it makes a request to the server the link points to and passes certain "header" data as part of that request, including "referrer" which is the page/site it came from.
HTTP "referer" header (yes, it's spelled wrong) does still technically exist, but it's unreliable and almost always absent.
... Copied to Clipboard!
TheMikh
04/18/23 11:34:49 PM
#22:


Questionmarktarius posted...
HTTP "referer" header (yes, it's spelled wrong) does still technically exist, but it's unreliable and almost always absent.
yeah, i haven't really seen it in active use since the 2000s. basically gone the way of <marquee></marquee>.

at my last job in ecommerce we tended to use js pixels issued by different cross-site tracking/marketing services, as well as google and facebook. no idea how the services worked on the marketing department's side of things.

---
http://i.imgur.com/A0TAfek.png
... Copied to Clipboard!
Tyranthraxus
04/18/23 11:36:42 PM
#23:


TheMikh posted...
GET params refer to the fields in the URL, which also pass along information to the server.

POST params are processed in a similar manner to GET params by the server under the hood, but instead of being passed by URL, they're are passed by way of form submissions or AJAX requests.

This is not accurate. GET and POST are known as verbs that indicate what kind of action a user is trying to take to a web app. Both of these can accept and process params from forms or query string.

In a non RESTful environment, everything is considered a POST.

---
It says right here in Matthew 16:4 "Jesus doth not need a giant Mecha."
https://i.imgur.com/dQgC4kv.jpg
... Copied to Clipboard!
#24
Post #24 was unavailable or deleted.
Questionmarktarius
04/18/23 11:39:43 PM
#25:


[LFAQs-redacted-quote]

Google is literally my ISP. I probably have three hundred death sentences by now.
... Copied to Clipboard!
Tyranthraxus
04/18/23 11:41:57 PM
#26:


Questionmarktarius posted...
Google is literally my ISP. I probably have three hundred death sentences by now.
Google being your ISP is probably better overall because they already know what websites you visit and the resource you accessed if you access them through Google.

---
It says right here in Matthew 16:4 "Jesus doth not need a giant Mecha."
https://i.imgur.com/dQgC4kv.jpg
... Copied to Clipboard!
Questionmarktarius
04/18/23 11:45:58 PM
#27:


Tyranthraxus posted...
Google being your ISP is probably better overall because they already know what websites you visit and the resource you accessed if you access them through Google.
Ultra-paranoid tracking lockdown.
Yet... Google is my ISP and email.

goddammit.
... Copied to Clipboard!
TheMikh
04/19/23 1:07:14 AM
#28:


Tyranthraxus posted...
This is not accurate. GET and POST are known as verbs that indicate what kind of action a user is trying to take to a web app. Both of these can accept and process params from forms or query string.

In a non RESTful environment, everything is considered a POST.
i guess come from a bit of a naive lamp development bias, wherein GET and POST are segmented but handled the same way on the server side. but yeah, forms can be submitted/processed as GET and non-forms can be submitted/processed as POST. less common, but doable.

---
http://i.imgur.com/A0TAfek.png
... Copied to Clipboard!
Vhagar995
04/19/23 11:16:51 PM
#29:


TheMikh posted...
been a little while since i've done webdev, but basically when you click a link, it makes a request to the server the link points to and passes certain "header" data as part of that request, including "referrer" which is the page/site it came from.

GET params refer to the fields in the URL, which also pass along information to the server.

POST params are processed in a similar manner to GET params by the server under the hood, but instead of being passed by URL, they're are passed by way of form submissions or AJAX requests.

and well, malware - whether in your system or in browser extensions - can track your browsing activity.
So bottomline , a website doesn't actually get a list of everything people search about it anywhere outside of it ?
... Copied to Clipboard!
TheMikh
04/20/23 12:51:25 AM
#30:


Vhagar995 posted...
So bottomline , a website doesn't actually get a list of everything people search about it anywhere outside of it ?
not unless the data is made available to them somehow

---
http://i.imgur.com/A0TAfek.png
... Copied to Clipboard!
MedeaLysistrata
04/22/23 8:27:02 PM
#31:


Simple, the site has access to your data and site visitors have access to who advertises here

---
updated 3/26/2023
https://gamefaqs.gamespot.com/boards/1568-100-presidents
... Copied to Clipboard!
Topic List
Page List: 1