Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parse.Cloud.HttpRequest host

I am creating a whitelist for google APIs and need the host for Parse.Cloud.HttpRequest because I am running it in cloud code. I tried *parse.com* but that is apparently not where the cloud request comes from. What is the host for Parse.Cloud.HttpRequest?

like image 539
Ero Avatar asked Jul 16 '26 02:07

Ero


1 Answers

I set up a simple cloud code function to fetch my webpage and watched the incoming traffic. The requests are apparently coming from Amazon AWS. So, if you want, you can white-list all incoming traffic from *.amazonaws.com*. Though it is still pretty wide, it's better than nothing. I guess.

Here are some of the "hosts" the requests were coming from:

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 that clarifies it a bit.

like image 196
Spartako Avatar answered Jul 22 '26 12:07

Spartako