本文整理汇总了PHP中Google_Config::setClientSecret方法的典型用法代码示例。如果您正苦于以下问题:PHP Google_Config::setClientSecret方法的具体用法?PHP Google_Config::setClientSecret怎么用?PHP Google_Config::setClientSecret使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Google_Config
的用法示例。
在下文中一共展示了Google_Config::setClientSecret方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get
public function get()
{
$callback = 'http://api.soundeavor.com/User/Auth/Login/Google/index.php';
$config = new \Google_Config();
$config->setApplicationName('Soundeavor');
$config->setClientId(Config::getConfig('GoogleClientId'));
$config->setClientSecret(Config::getConfig('GoogleClientSecret'));
$config->setRedirectUri($callback);
$client = new \Google_Client($config);
/*
* Add scopes (permissions) for the client https://developers.google.com/oauthplayground/
*/
$client->addScope('https://www.googleapis.com/auth/plus.me');
if (!isset($_GET['code'])) {
$loginUrl = $client->createAuthUrl();
header('Location: ' . $loginUrl);
}
$code = $_GET['code'];
$client->authenticate($code);
$accessToken = $client->getAccessToken();
$accessToken = $accessToken['access_token'];
$service = new \Google_Service_Plus($client);
$scopes = $service->availableScopes;
print_r($scopes);
die;
}
示例2: setClientSecret
/**
* Set the OAuth 2.0 Client Secret.
* @param string $clientSecret
*/
public function setClientSecret($clientSecret)
{
$this->config->setClientSecret($clientSecret);
}
示例3: register
public function register(Application $app)
{
$app['gapi.services'] = $app->share(function () use($app) {
$path = __DIR__ . '/../Resources/services.json';
$data = file_get_contents($path);
return json_decode($data, true);
});
$app['gapi.scopes'] = $app->share(function () use($app) {
$path = __DIR__ . '/../Resources/scopes.json';
$data = file_get_contents($path);
return json_decode($data, true);
});
$app['gapi.config'] = $app->share(function () use($app) {
$options = $app['gapi.options'];
$config = new \Google_Config();
if (isset($options['application_name'])) {
$config->setApplicationName($options['application_name']);
}
if (isset($options['client_id'])) {
$config->setClientId($options['client_id']);
}
if (isset($options['client_secret'])) {
$config->setClientSecret($options['client_secret']);
}
if (isset($options['redirect_uri'])) {
$config->setRedirectUri($options['redirect_uri']);
}
if (isset($options['access_type'])) {
$config->setAccessType($options['access_type']);
}
if (isset($options['approval_prompt'])) {
$config->setApprovalPrompt($options['approval_prompt']);
}
if (isset($options['developer_key'])) {
$config->setDeveloperKey($options['developer_key']);
}
return $config;
});
$app['gapi.client'] = $app->share(function () use($app) {
$options = $app['gapi.options'];
$client = new \Google_Client($app['gapi.config']);
foreach (array('scope', 'scopes') as $key) {
if (isset($options[$key]) && $options[$key]) {
$scopes = $options[$key];
if (!is_array($scopes)) {
$scopes = array($scopes);
}
foreach ($scopes as $scope) {
if (isset($app['gapi.scopes'][strtolower($scope)])) {
$scope = $app['gapi.scopes'][strtolower($scope)];
}
$client->addScope($scope);
}
}
}
if (isset($options['refresh_token'])) {
$client->refreshToken($options['refresh_token']);
}
return $client;
});
$app['gapi.access_token'] = function () use($app) {
$token = json_decode($app['gapi.client']->getAccessToken());
if (is_object($token) && isset($token->access_token)) {
return $token->access_token;
} else {
return null;
}
};
foreach ($app['gapi.services'] as $service => $classname) {
$app['gapi.service.' . $service] = $app->share(function () use($app, $classname) {
$class = new \ReflectionClass($classname);
return $class->newInstance($app['gapi.client']);
});
}
}