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?
Asked
Active
Viewed 150 times
3

Ero
- 491
- 1
- 3
- 15
-
Why not to use Webhooks for the same? – Vintesh Aug 22 '15 at 11:44
1 Answers
4
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.

Spartako
- 113
- 2
- 10