試圖通過Google Drive的API V3向文件添加權限,我遇到了下面的錯誤。我想允許來自我的網站mta.io的請求讀取文件。例如,錯誤似乎來自我在請求主體中傳遞的域,example.com工作正常,授予權限。我是否需要將我的網域列入白名單才能授予其文件權限?Google Drive API V3:爲域創建文件權限
作品:
{
"role": "reader",
"type": "domain",
"domain": "example.com"
}
不起作用:
{
"role": "reader",
"type": "domain",
"domain": "mta.io"
}
錯誤:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalid",
"message": "The specified domain is invalid or not applicable for the given permission type.",
"locationType": "other",
"location": "permission.domain"
}
],
"code": 400,
"message": "The specified domain is invalid or not applicable for the given permission type."
}
}
我使用API的網站上發現了try it功能。