我已经创建了一个用于读取会议列表的应用程序,尽管我已经设置了Meetings的权限,但下面是这个错误。
API:
GET /restapi/v1.0/account/{accountId}/extension/{extensionId}/meeting
错误:
{
"errorCode":"CMN-408",
"message":"In order to call this API endpoint, user needs to have [Meetings] permission for requested resource.&
这是我的
代码:
include 'c:/wamp/www/google-api/src/';
require_once 'c:/wamp/www/google-api/src/Google/Client.php';
require_once 'c:wamp/www/google-api/src/Google/Service.php';
错误:
Warning: include(C:\wamp\www\google-api\src): failed to open stream: Permission denied in C:
我正在使用Python脚本从获取片段信息。附带的所有内置段都很好地打印,但是我创建的自定义段没有显示出来。
下面是脚本的相关部分:
def get_service(api_name, api_version, scope, key_file_location,
service_account_email):
"""Get a service that communicates to a Google API.
Args:
api_name: The name of the api to connect to.
a