0

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.

ahmadabdullah247
  • 341
  • 1
  • 4
  • 16

1 Answers1

1

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.

Adrian Hall
  • 7,990
  • 1
  • 18
  • 26
  • I am using Node.js, cloudinary docs are straight forward. I actually need help on Azure side. Do you know how to upload image form mobile app service using node. – ahmadabdullah247 Aug 08 '16 at 04:28