I'm attempting to iteratively retrieve the content from the O365 management API (found here). When I get to the 'Retrieving Content' section, I am making a get request using the URI returned from the 'Get Available Content' method.
I am able to successfully iterate over the available content using the returned URI, but I am seeing the following message appear occasionally:
{"error": {"message": "Too many requests. Method=GetBlob, PublisherId=00000000-0000-0000-0000-000000000000", "code": "AF429"}}
This indicates a throttling error, as mentioned at the bottom of the documentation, but when I try to add the '&PublisherId={myid}' to that request, I get a Runtime Error returned from the server.
Does anyone know how to add the PublisherId to the GetBlob call so that I can avoid throttling?