我似乎无法对从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 文件可以下载或者仍然需要,我不能罚款。