Google Contacts PHP 查询返回空白结果

发布于 2024-10-17 22:07:28 字数 397 浏览 2 评论 0原文

在我的 Google 帐户中,我的网站域名被列为已被授予访问 Google 通讯录的权限。

因此,我希望下面的 URL 及其相应的代码能够回显我所有 Gmail 联系人的列表。但它只是返回一个空白页。知道为什么它不回显我所有 Gmail 联系人的列表吗?

提前致谢,

约翰

URL:http://domain.com/gcontacts2.php

代码:

<?php

$contacts = $_GET ['https://www.google.com/m8/feeds/contacts/arizona.williams%40gmail.com/full']; 


echo $contacts;

?>

In my Google account, the domain name of my site is listed as having been granted access to Google Contacts.

So I would expect the URL below and its corresponding code to echo a list of all my Gmail contacts. But it simply returns a blank page. Any idea why it does not echo a list of all my Gmail contacts?

Thanks in advance,

John

URL: http://domain.com/gcontacts2.php

Code:

<?php

$contacts = $_GET ['https://www.google.com/m8/feeds/contacts/arizona.williams%40gmail.com/full']; 


echo $contacts;

?>

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

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

发布评论

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

评论(1

朮生 2024-10-24 22:07:28

权限错误。与您的域的简单 IP 关系并不授予您访问帐户联系人的权限。阅读有关使用 arizona williams 帐户验证您身份的 api。

这也不是返回页面数据的方式......请考虑使用 apache gets 或curl。您从浏览器请求中获取“获取”数据(类似于发布请求或发布的 cookie)。

Permission error. A simple ip relation to your domain doesn't grant you access to the accounts contacts. Read the api about authenticating youself with arizona williams' account.

That is also NOT how you return the data of a page.... Look into using apache gets or curl. You're getting the "get" data from a browser request (similar to a post request or posted cookie).

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