while writing application using nodejs/azure and table services, how can we set what type of authorization should be used. Shared Key Lite (or) Shared Key.
How can we set that?
|
while writing application using nodejs/azure and table services, how can we set what type of authorization should be used. Shared Key Lite (or) Shared Key. How can we set that? |
|||||
|
|
It depends how you're accessing Table Services. If you use the SDK you can do it like this: Shared Key
Shared Key Lite
Take a look at the code and you'll see that Shared Key will be used if you omit the authentication provider. If you use
So your code will be something like this:
|
|||||
|