How can I add a PublisherId to a GetBlob call to the Office365 Rest API to avoid throttling?

自闭症网瘾萝莉.ら 提交于 2019-12-02 07:25:44

I had the same issue and added "?PublisherIdentifier={id}" to the url and it seems to be working now.

On another topic, be aware that if you use the list available content method the pagination header is 'NextPageUri' and not 'NextPageUrl' like the documentation says.

I had the same issue and then added the "?PublisherIdentifier={id}" uri parameter like Julian mentioned. That fixed the issue for me.

You can see the setup that I've been using at the below link (Python). It uses asyncio/aiohttp to speed up the log gathering and also performs the pagination in case you have a 'NextPageUri' header in the response.

https://github.com/IntegralDefense/o365_log_fetch

Documentation isn't up to speed yet, but hopefully that will change soon.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!