Parse.Cloud.HttpRequest host

I am creating a whitelist for Google APIs and need a host for Parse.Cloud.HttpRequest because I am running it in cloud code. I tried it *parse.com*

, but that seems to be not where the cloud request comes from. What is the host for Parse.Cloud.HttpRequest?

+3


source to share


1 answer


I have set up a simple cloud code feature to fetch my webpage and watch the incoming traffic. It looks like the requests are coming from Amazon AWS. So, if you want, you can whitelist all incoming traffic from *.amazonaws.com*

. Although it is still quite wide, it is better than nothing. I think.

Here are some of the "hosts" from which the requests came:



ec2-54-85-239-110.compute-1.amazonaws.com.52367
ec2-54-85-238-241.compute-1.amazonaws.com.58376
ec2-54-85-239-177.compute-1.amazonaws.com.55239

      

Hope this clarifies a little.

+4


source







All Articles