我想使用PHP将新的联系人条目推送到谷歌联系人。
下面是我的index.php代码。
require_once 'vendor/autoload.php';
session_start();
$client = new Google_Client();
$client->setClientId('519334414648-
f2jiml3iuuj87mjn1ofc9kbqmlsn7iqb.apps.googleusercontent.com');
$client->setClientSecret('0x9LpW7Qr37x89YFRtmgq6oH');
$client->setRedirectUri('http://example.com/demo/contacts/redirect.php');
$client->addScope('profile');
$client->addScope('https://www.googleapis.com/auth/contacts.readonly');
if (isset($_GET['oauth'])) {
// Start auth flow by redirecting to Google's auth server
$auth_url = $client->createAuthUrl();
header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL));
}
else if (isset($_GET['code'])) {
// Receive auth code from Google, exchange it for an access token, and
// redirect to your base URL
$client->authenticate($_GET['code']);
$_SESSION['access_token'] = $client->getAccessToken();
$redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/demo/contacts';
header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
}
else if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
// You have an access token; use it to call the People API
$client->setAccessToken($_SESSION['access_token']);
$client->setAccessType('online');
// TODO: Use service object to request People data
$client->addScope(Google_Service_PeopleService::CONTACTS);
$service = new Google_Service_PeopleService($client);
$person = new Google_Service_PeopleService_Person();
$person->setPhoneNumbers('1234512345');
$name = new Google_Service_PeopleService_Name();
$name->setDisplayName('test user');
$person->setNames($name);
$exe = $service->people->createContact($person);
}
else {
$redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/demo/contacts?oauth';
header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
}
执行以下代码后出现此错误。未捕获的例外' Google_Service_Exception'消息' { "错误":{ "代码":401, " message":"请求具有无效的身份验证凭据。预期的OAuth 2访问令牌,登录cookie或其他有效的身份验证凭据。 任何1可以告诉我我的代码是否正确吗?如果没有,请建议将联系方式推送到联系人或人员API的协同方式。
答案 0 :(得分:1)
您可以参考此documentation。
在上述文档中详细阐述了完整的步骤,您可以按照它们获得良好的结果。
Here,还提供了代码,
<?php
require_once __DIR__ . '/vendor/autoload.php';
define('APPLICATION_NAME', 'People API PHP Quickstart');
define('CREDENTIALS_PATH', '~/.credentials/people.googleapis.com-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/people.googleapis.com-php-quickstart.json
define('SCOPES', implode(' ', array(
Google_Service_PeopleService::CONTACTS_READONLY)
));
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient() {
$client = new Google_Client();
$client->setApplicationName(APPLICATION_NAME);
$client->setScopes(SCOPES);
$client->setAuthConfig(CLIENT_SECRET_PATH);
$client->setAccessType('offline');
// Load previously authorized credentials from a file.
$credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
// Store the credentials to disk.
if(!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
}
return $client;
}
/**
* Expands the home directory alias '~' to the full path.
* @param string $path the path to expand.
* @return string the expanded path.
*/
function expandHomeDirectory($path) {
$homeDirectory = getenv('HOME');
if (empty($homeDirectory)) {
$homeDirectory = getenv('HOMEDRIVE') . getenv('HOMEPATH');
}
return str_replace('~', realpath($homeDirectory), $path);
}
// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_PeopleService($client);
// Print the names for up to 10 connections.
$optParams = array(
'pageSize' => 10,
'personFields' => 'names,emailAddresses',
);
$results = $service->people_connections->listPeopleConnections('people/me', $optParams);
if (count($results->getConnections()) == 0) {
print "No connections found.\n";
} else {
print "People:\n";
foreach ($results->getConnections() as $person) {
if (count($person->getNames()) == 0) {
print "No names found for this connection\n";
} else {
$names = $person->getNames();
$name = $names[0];
printf("%s\n", $name->getDisplayName());
}
}
}
要创建联系人,您可以使用此Method: people.createContact。
创建新联系人并返回该联系人的人员资源。
有关OAuth 2.0的进一步参考,请参阅here。
此外,如果这适用于您的问题,您可以查看此SO post有关错误的补救措施。