0

我似乎无法对从Google Developer Console获取 .p12 文件的更新教程进行罚款。

$client = new Google_Client();
$client->setApplicationName("XXXXXXXX");
$client->setAssertionCredentials(
         new \Google_Auth_AssertionCredentials(
              'xxxxxxxxxx@developer.gserviceaccount.com',
              array('https://www.googleapis.com/auth/analytics.readonly'),
             file_get_contents(app_path()."\config\analytics\client_secret_xxxxxxxxxxxxx.apps.googleusercontent.com.json")
            )
        );
$client->setClientId('xxxxxx.apps.googleusercontent.com');
$client->setAccessType('offline_access');

$service = new Google_Service_Analytics($client);

我收到这个错误

Unable to parse the p12 file. Is this a .p12 file? Is the password correct? OpenSSL error: error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag

我在存储库中使用最新版本的 api 。我试图解析的文件是在开发人员控制台中下载的文件:Apis & Auth -> credentials -> Download JSON。在创建新的客户 ID 之后。如果 .p12 文件可以下载或者仍然需要,我不能罚款。

4

1 回答 1

2

您需要创建一个Service Accountnot a Web Applicationor Installed Application。一旦您创建了这样的客户端,就会有一个名为“生成新的 P12 密钥”的按钮,您可以使用它来生成和下载 .p12 文件。

于 2015-01-19T23:14:12.937 回答