弃用google plus api的替代解决方案是什么?

问题描述 投票:1回答:2

谷歌宣布所有google plus api在3月7日被弃用,而我正在使用google plus api和oauth2所以我担心的是我的https://www.googleapis.com/plus/v1/people/me也被弃用,如果是,那么替代解决方案是什么。

//index.php
<?php 
include('constant.php');
include('google-login-api.php');
// include constant.php
// include google-api library


if(isset($_GET['code'])) {

    $gapi = new GoogleLoginApi();

    // Get the access token 
    $data = $gapi->GetAccessToken(GOOGLE_CLIENT_ID, GOOGLE_CLIENT_REDIRECT_URL, GOOGLE_CLIENT_SECRET, $_GET['code']);





    if(is_array($data) && count($data)>0)
    {
        // Get user information
        $user_info = $gapi->GetUserProfileInfo($data['access_token']);

        echo "<pre>";
        print_r($user_info);
    }
}else{
    //html code
    ?>
    <a class="sign-in sign-google" href="<?php echo GOOGLE_API_URL; ?>"><i class="fa fa-google-plus"aria-hidden="true"></i>Sign In with Google</a>
    <?php
}
?>

//google-login-api.php
<?php

class GoogleLoginApi
{
    public function GetAccessToken($client_id, $redirect_uri, $client_secret, $code) {  
        $url = 'https://accounts.google.com/o/oauth2/token';            

        $curlPost = 'client_id=' . $client_id . '&redirect_uri=' . $redirect_uri . '&client_secret=' . $client_secret . '&code='. $code . '&grant_type=authorization_code';
        $ch = curl_init();      
        curl_setopt($ch, CURLOPT_URL, $url);        
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);        
        curl_setopt($ch, CURLOPT_POST, 1);      
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);    
        $data = json_decode(curl_exec($ch), true);
        $http_code = curl_getinfo($ch,CURLINFO_HTTP_CODE);      
        if($http_code != 200) 
            throw new Exception('Error : Failed to receieve access token');

        return $data;
    }

    public function GetUserProfileInfo($access_token) { 
        $url = 'https://www.googleapis.com/plus/v1/people/me';          

        $ch = curl_init();      
        curl_setopt($ch, CURLOPT_URL, $url);        
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer '. $access_token));
        $data = json_decode(curl_exec($ch), true);
        $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);     
        if($http_code != 200) 
            throw new Exception('Error : Failed to get user information');

        return $data;
    }
}

?>

这是我使用的代码,它的运行完美......但问题是7月3日之后仍在运行

php google-plus google-signin
2个回答
0
投票

Google People API是Google Plus API(或至少是API的plus.people部分)的粗略替代品。它从根本上做同样的事情(返回用户的配置文件信息),尽管请求的完成方式和响应的格式有一些变化。最大的区别是您需要准确地要求接收哪些字段。

为了获得information for the user,你可以设置$url更像

$fields = 'names,emailAddresses';
$url = 'https://people.googleapis.com//v1/people/me?personFields='+$fields;

您可以在reference for people.get中查看personFields参数和有效访问的OAuth范围的可能值。


0
投票

更改网址,

$url = 'https://www.googleapis.com/plus/v1/people/me';

至,

$url = 'https://www.googleapis.com/oauth2/v3/userinfo';

我有同样的问题,解决了here

© www.soinside.com 2019 - 2024. All rights reserved.