dongmo20030416 2016-12-12 03:00
浏览 34
已采纳

如何从Google Directory API检索电话号码?

I'm using Directory API with PHP to retrieve all users. A response for a user who has a phone number added looks like this:

Google_Service_Directory_User Object ( [collection_key:protected] => nonEditableAliases [addresses] => [agreedToTerms] => 1 [aliases] => [changePasswordAtNextLogin] => [creationTime] => 2016-11-29T14:21:30.000Z [customSchemas] => [customerId] => 1234 [deletionTime] => [emails] => Array ( [0] => Array ( [address] => test@companymail.com [primary] => 1 ) [1] => Array ( [address] => test@companymail.com ) ) [etag] => "tagg" [externalIds] => [hashFunction] => [id] => 12344 [ims] => [includeInGlobalAddressList] => 1 [ipWhitelisted] => [isAdmin] => [isDelegatedAdmin] => 1 [isMailboxSetup] => 1 [kind] => admin#directory#user [lastLoginTime] => 2016-12-12T10:13:31.000Z [nameType:protected] => Google_Service_Directory_UserName [nameDataType:protected] => [nonEditableAliases] => Array ( [0] => test@companymail.com.test-google-a.com [1] => test@companymail.com ) [notes] => [orgUnitPath] => / [organizations] => [password] => [phones] => [primaryEmail] => test@companymail.com [relations] => [suspended] => [suspensionReason] => [thumbnailPhotoEtag] => [thumbnailPhotoUrl] => [websites] => [internal_gapi_mappings:protected] => Array ( ) [modelData:protected] => Array ( [name] => Array ( [givenName] => TestNAme [familyName] => TestNAme [fullName] => TestNAme TestNAme ) ) [processed:protected] => Array ( ) )

The phone number was set 5 days ago (it's there), but as you can see the "phones" array is empty.

This is how I use the API:

$directory_service = new Google_Service_Directory($client);
$params = array('domain' => $domain);
$results = $directory_service->users->listUsers($params);
$users = $results->getUsers();

I can't figure out what's wrong. Do I need to enable any settings? How can I get users' phone numbers?

Thanks in advance.

  • 写回答

1条回答 默认 最新

  • duanlaican1849 2016-12-13 15:27
    关注

    You might have added phone numbers for the domain contact but in your own contacts data. These will display 'merged' with the domain contact details in the Contacts UI and appear correct to you. They won't be visible to others though or be stored in the domain data.

    Do this for testing:

    1. Pick a domain user account and add a phone number for them using the admin console Users UI. Admin console > Users > (select User) > Account > Contact information > Edit > Add a phone > Click Update User.
    2. To confirm your addition, use Try this API here: https://developers.google.com/admin-sdk/directory/v1/reference/users/get and just enter your user account name from 1 (email address) in userKey, for viewType select admin_view and click Execute.

    You should see the phone data in the JSON returned. Once you can do this you can retest your PHP code.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部