从 php 中的 google 个联系人中检索群组联系人
Retrieve group contact from google contact in php
我已经按照https://developers.google.com/google-apps/contacts/v3/#retrieving_a_single_contact_group的说明进行分组数据了。
但是每当我尝试使用 https://www.google.com/m8/feeds/groups/default/full 获取分组数据时,我只得到了给定数组中的组 ID,他们提供的不是其他数据(如姓名、手机号码)。
下面给出了给定数组之一,以便更好地理解
[0] => Array
(
[gd$etag] => "YDwreyM."
[id] => Array
(
[$t] => http://www.google.com/m8/feeds/groups/rahmanarafat13%40gmail.com/base/6
)
[updated] => Array
(
[$t] => 1970-01-01T00:00:00.000Z
)
[category] => Array
(
[0] => Array
(
[scheme] => http://schemas.google.com/g/2005#kind
[term] => http://schemas.google.com/contact/2008#group
)
)
[title] => Array
(
[$t] => System Group: My Contacts
)
[content] => Array
(
[$t] => System Group: My Contacts
)
[link] => Array
(
[0] => Array
(
[rel] => self
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/groups/rahmanarafat13%40gmail.com/full/6?v=3.0
)
)
[gContact$systemGroup] => Array
(
[id] => Contacts
)
)
不要获取 ['gd$name'] 或 ['gd$phoneNumbe'] 等其他值。
我现在该怎么办?
如有任何疑问请在评论中提问
试试这个 url:
href="http://www.google.com/feeds/contacts/groups/userEmail/base/1234b"/
使用此方法检索使用 query parameters 的联系人(包括组)。
参考文献:
- gContact:groupMembershipInfo
- Contacts Data API parameters
- Google Contact API Fetch Contacts related to a Contact Group
希望对您有所帮助。
我已经按照https://developers.google.com/google-apps/contacts/v3/#retrieving_a_single_contact_group的说明进行分组数据了。
但是每当我尝试使用 https://www.google.com/m8/feeds/groups/default/full 获取分组数据时,我只得到了给定数组中的组 ID,他们提供的不是其他数据(如姓名、手机号码)。
下面给出了给定数组之一,以便更好地理解
[0] => Array
(
[gd$etag] => "YDwreyM."
[id] => Array
(
[$t] => http://www.google.com/m8/feeds/groups/rahmanarafat13%40gmail.com/base/6
)
[updated] => Array
(
[$t] => 1970-01-01T00:00:00.000Z
)
[category] => Array
(
[0] => Array
(
[scheme] => http://schemas.google.com/g/2005#kind
[term] => http://schemas.google.com/contact/2008#group
)
)
[title] => Array
(
[$t] => System Group: My Contacts
)
[content] => Array
(
[$t] => System Group: My Contacts
)
[link] => Array
(
[0] => Array
(
[rel] => self
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/groups/rahmanarafat13%40gmail.com/full/6?v=3.0
)
)
[gContact$systemGroup] => Array
(
[id] => Contacts
)
)
不要获取 ['gd$name'] 或 ['gd$phoneNumbe'] 等其他值。
我现在该怎么办?
如有任何疑问请在评论中提问
试试这个 url:
href="http://www.google.com/feeds/contacts/groups/userEmail/base/1234b"/
使用此方法检索使用 query parameters 的联系人(包括组)。
参考文献:
- gContact:groupMembershipInfo
- Contacts Data API parameters
- Google Contact API Fetch Contacts related to a Contact Group
希望对您有所帮助。