我希望使用 O365 提供的报告 Web 服务 API 以编程方式访问消息跟踪。
更具体地说,我想使用此API 路由来访问该信息,因为我没有看到任何其他支持消息跟踪的 API/API 路由。
但是,当我执行以下操作时cURL
,
curl "https://reports.office365.com/ecp/reportingwebservice/reporting.svc/MessageTrace" -u "<my email address>"
我收到此错误:
<?xml version="1.0" encoding="utf-8"?><m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"><m:code /><m:message xml:lang="en-US">Resource not found for the segment 'MessageTrace'.</m:message></m:error>
我已经验证我的身份验证按预期工作,我不能将 .NET 用于我的用例,所以很遗憾,我不能使用 rwsclient 库。
此 API 路由不再有效吗?还是我只是在查询错误的东西?