How to perform scheduled backups on parse.com?

Do you have any suggestions for backing up the parse.com database regularly?

The information on this is rather scarce, and I would like to do something similar to the function of exporting data manually in the control panel, but daily.

Does anyone have a script or something similar that they would like to share?

Pars said they were going to think about this feature, but a year passed.

+4
source share
2 answers

Parse, Parse, . API REST API. Parse SDK JavaScript, . NET iOS/OS X, , .

Parse, GameScore, - :

curl -X GET \
  -H "X-Parse-Application-Id: <YOUR APPLICATION ID>" \
  -H "X-Parse-REST-API-Key: <YOUR PARSE REST API KEY>" \
  -G \
  --data-urlencode 'limit=1000' \
  --data-urlencode 'skip=4000' \
  https://api.parse.com/1/classes/GameScore

limit=1000 , 1000 ( ), skip=4000 , 4000 . , skip=0 skip 1000 , 1000 ( ). , .

+2

. mongodb, , . mongodb . ,

mongorestore /path-to-mongodump ( )

, .

+2

Source: https://habr.com/ru/post/1525139/


All Articles