无法从Google API获取访问令牌

时间:2018-02-06 09:09:36

标签: php google-api google-client

当我尝试从Google API获取访问令牌但我得到空

        $client = new Google_Client();
            $client->setApplicationName("name app");
            $client->setAccessType('offline');
            $client->setClientId('id client');
            $client->setClientSecret('secret');
            $client->setRedirectUri('redirect url');
            $client->addScope("https://www.googleapis.com/auth/calendar.readonly");
        //$client->authenticate($_GET['code']);
        $access_token = $client->getAccessToken();
        $tokens_decoded = json_decode($access_token);
        //$refreshToken = $tokens_decoded->refresh_token;
      if(!$access_token) {
        /**
        * AUCUN TOKEN SAUVE -> IL FAUT REDIRIGER
        * L'UTILISATEUR SUR L'URL $authUrl
        */
        $authUrl = $client->createAuthUrl();

        die();
      }

请建议一种方法来获得相同的

0 个答案:

没有答案