You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 25, 2019. It is now read-only.
"readme": "##Windows Azure url signer\n\nModule to sign urls to allow access to the private blobs in windows azure \n\n###To install\n\n npm install windows-azure-url-signer\n\n###Use example\n\n var sig= require('windows-azure-url-signer');\n\n var account1 = sig.urlSigner('my key', 'my secret');\n var account2 = sig.urlSigner('my key2', 'my secret2');\n \n var url1 = account1.getUrl('GET', 'somefile.png', 'mycontainer', 10); //url expires in 10 minutes\n var url2 = account2.getUrl('PUT', '/somedir/somefile.png', 'mycontaineronotheraccount', 100); //url expires in 100 minutes\n\n###Credits\n\nInspired by and derived from [amazon-s3-url-signer](https://github.com/dyashkir/amazon-s3-url-signer).\n\n###License\n\nBSD, because that's what amazon-s3-url-signer is\n",