PHP 获取 Google 网络历史记录

发布于 2025-01-03 12:01:03 字数 658 浏览 1 评论 0原文

我正在用 PHP 构建一个网站,该网站将允许用户在其个人资料页面上查看最近 5-10 个 google 网络历史记录关键字。我知道 Google 历史记录可以通过以下 URL 以 RSS 源形式提供:

https://www. google.com/history/?output=rss

如何在 php 中编写代码,将用户名和密码传递给 google,并允许以编程方式从中获取关键字。

非常感谢任何帮助,因为我陷入了困境。我访问过以下问题,但没有多大帮助。

  1. 下载 Google 网络历史记录的脚本

  2. 从 Google 网络历史记录中检索旧搜索(有一些 C# 代码,不知道如何转换为 PHP)

谢谢

I am building a site in PHP which will allow users to view their last 5-10 google web history keywords on their profile page. I know that google history is available as a RSS feed at following URL :

https://www.google.com/history/?output=rss

How can I write a code in php which will pass username and password to google and allows to fetch keywords from it programmatically.

Any help is much appreciated as I am stuck in this. I have visited following questions but they did`t helped much.

  1. Script to download Google web history

  2. Retrieve old searches from Google web history (has some code in C#, don`t know how to convert to PHP)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千仐 2025-01-10 12:01:03

看起来 RSS 提要使用 HTTP 基本身份验证。

您可以使用 Curl 进行身份验证和获取,然后解析 RSS 提要以检索历史记录。

有关使用curl进行基本身份验证的信息,请参阅: 如何使用 HTTP 基本身份验证和 PHP curl 发出请求?

php 中有大量 RSS 解析器...这里只是一个:http://magpierss.sourceforge.net/

It looks like that RSS feed uses HTTP basic auth.

You can use Curl to do the authentication and fetching then parse the RSS feed to retrieve the history.

For basic auth with curl see: How do I make a request using HTTP basic authentication with PHP curl?

And theres plenty of RSS parsers in php... here's just one: http://magpierss.sourceforge.net/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文