问题描述
在Google Calendar API的notes部分,它表示:
授权信息存储在文件中系统,所以后续执行不会提示进行授权。
凭证文件的位置在CREDENTIALS_PATH变量中指定。
使用expandHomeDirectory函数获取确切位置。
$ credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
echo $ credentialsPath
Mine位于:C:\ Users \MyUsername\.credentials\calendar -php-quickstart.json
我之所以会问这个问题,是因为我有一个错误:
我删除了文件以再次验证身份。
https://developers.google.com/google-apps/calendar/quickstart/php#step_1_enable_the_api_nameUnder the notes section of Google Calendar API it says that:
"Authorization information is stored on the file system, so subsequent executions will not prompt for authorization."
The credentials file's location is specified in the CREDENTIALS_PATH variable.use the expandHomeDirectory function to get the exact location.
$credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);echo $credentialsPath
Mine is is located on: C:\Users\MyUsername\.credentials\calendar-php-quickstart.json
The reason I asked this is that I am having an error saying
I deleted the file to become authenticated again.
这篇关于授权信息的准确存储位置在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!