因此请遵循文档的这一部分www.example.com中的文档https://learn.microsoft.com/en-us/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0&tabs=java#request
docs中的代码返回429错误消息:{“消息”:“超出验证失败的请求限制”}
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
UserActivityRecentCollectionPage recent = graphClient.me().activities()
.recent()
.buildRequest()
.get();
我确实确保了权限的授予和其他API的工作
我确保权限有效。我试着添加像文档中那样的参数,但我无法做到。
1条答案
按热度按时间dfty9e191#
根据doc,429错误只会在您的请求数量超过服务限制时报告。由于此错误通常在高并发场景中抛出,因此我无法为您重现此错误。
您可以通过参考Microsoft Graph service-specific limitations.
希望这对你有帮助
谢谢