Cloudinary intigration with azure mobile service

76 Views Asked by At

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.

1

There are 1 best solutions below

1
On

It depends on the language. Node.js uses process.env, PHP uses $_ENV and Django (which is python) uses os.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.