Hi I am trying to use cloudinary with azure mobile service, following from the link below: http://cloudinary.com/documentation/azure_integration
In the last line of the documentation it says I can access cloudinary in my backend script from environment variable. I am unable to access environment variable. Can someone please guide me how to use it.
It depends on the language. Node.js uses
process.env
, PHP uses$_ENV
and Django (which is python) usesos.environ
. The docs for cloudinary are fairly straight forward, so you shouldn't have any problems.If you are using Azure App Service (Mobile Apps), then you are likely using Node.js.