Based on the documentation for List Blobs for Azure Storage as mentioned here :- https://msdn.microsoft.com/en-us/library/azure/dd135734.aspx
I'm trying to list the blobs in a container using the shell script mentioned in Accessing Azure blob storage using bash, curl
The shell script works fine as it generates the correct signature.
However if there are too many blobs to list the response contains the NextMarker element.
The REST API documentation mentions that the marker value can be used in a subsequent call to request the next set of list items.
Does this marker needs to be included in the string_to_sign or would it work fine by just including it in the URL ?