Calling Azure REST API
This blog Calling Azure REST API via curl is pretty good. Just two more things.
This blog Calling Azure REST API via curl is pretty good. Just two more things.
HTTP rate limit is often the max requests in a limited time period, and sometimes could also be the max concurrent requests.
I need to sync github repository (files and commits only) https://github.com/copdips/copdips.github.io to gitee repository https://gitee.com/copdips/copdips.github.io.
For people who encounter UnicodeEncodeError when using Windows Azure Pipeline agent, the issue might be here.
As per above link, or this email, the solutions could be:
PYTHONIOENCODING=UTF-8.PYTHONUTF8=1, or by passing the command-line option -X utf8.The example given by this post is for Azure Pipeline with the latest Ubuntu agent, for AzCli from local machine, removing the --auth-mode login part should work.
As it's a Linux pipeline agent, the pipeline task AzureFileCopy can not be used, it's written in Powershell, we should use the AzureCLI task instead.