在运行此请求时,我们遇到了一个新问题:https://learn.microsoft.com/en-us/graph/api/channel-get-filesfolder?view=graph-rest-1.0&tabs=http
也就是说,/teams/{id}/channels/{id}/filesFolder GET
以前,如果通过API创建了一个Team,那么它不会链接到带有文件的文件夹,直到用户单击团队客户端中的files并从而初始化它。并且在初始化之前,请求将返回NotFail404。
但是,由于大约在2021年2月25日左右,如果授权使用MFA,我们现在得到了这个错误:值不能为null。参数名称:令牌。但是,当我们使用流量捕获验证时,授权令牌在请求中是。通过单击“文件”初始化文件夹后,请求将开始返回有效数据。
这是个虫子吗?谢谢。
GET https://graph.microsoft.com/v1.0/teams/.../channels/.../filesFolder?$select=id,name,webUrl,parentReference HTTP/1.1
Content-Type: application/json
User-Agent: <...>
Authorization: Bearer ...
Host: graph.microsoft.com
Connection: Keep-Alive
HTTP/1.1 400 Bad Request
Cache-Control: private
Content-Type: application/json
request-id: ...
client-request-id: ...
x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"West Europe","Slice":"SliceC","Ring":"5","ScaleUnit":"005","RoleInstance":"AGSFE_IN_67"}}
Strict-Transport-Security: max-age=31536000
Date: Mon, 01 Mar 2021 19:38:40 GMT
Content-Length: 310
{
"error": {
"code": "BadRequest",
"message": "Value cannot be null.\r\nParameter name: token",
"innerError": {
"date": "2021-03-01T19:38:41",
"request-id": "...",
"client-request-id": "..."
}
}
}
发布于 2021-03-11 00:36:06
我们养了一只虫子。我们没有ETA共享的时候,它将可用。
https://stackoverflow.com/questions/66438496
复制相似问题