Overview of Azure Storage Queue JavaScript sample scenarios
mainThe following sample programs demonstrate common authentication and operational scenarios using the Azure Storage Queue JavaScript client library:
| Scenario | Sample File |
|---|---|
| Authenticate using an account name and a static key | sharedKeyAuth.js |
| Authenticate with Azure Active Directory | azureAdAuth.js |
| Authenticate anonymously using a SAS-encoded URL | anonymousAuth.js |
| Authenticate using a connection string | connectionStringAuth.js |
Use QueueServiceClient to create queues and manage messages (send/receive/delete) | queueClient.js |
| List queues in the account (including paging and resuming paging) | listQueues.js |
| Configure proxy settings for connections | proxyAuth.js |
| Use custom HTTP pipeline options | customPipeline.js |