From d2b5be20a8104d86c740b5e47b9129ff12d7e0cf Mon Sep 17 00:00:00 2001 From: Benjamin Wilson Friedman Date: Sun, 23 Apr 2017 14:59:24 -0700 Subject: [PATCH] Fixed docs.parseplatform.org links in README.md (#3728) * Fixed docs.parseplatform.org links in README.md Fixes a couple links in the README.md that were forcing `https` while docs.parseplatform.org does not support a secure connection currently. * Changed link for sdks Updated the link for the sdks to the more detailed page http://parseplatform.org/#sdks --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c3d633a..1df4996c 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ That's it! You are now running a standalone version of Parse Server on your mach ### Saving your first object -Now that you're running Parse Server, it is time to save your first object. We'll use the [REST API](https://docs.parseplatform.org/rest/guide), but you can easily do the same using any of the [Parse SDKs](https://parseplatform.github.io/#sdks). Run the following: +Now that you're running Parse Server, it is time to save your first object. We'll use the [REST API](http://docs.parseplatform.org/rest/guide), but you can easily do the same using any of the [Parse SDKs](http://parseplatform.org/#sdks). Run the following: ```bash curl -X POST \ @@ -105,7 +105,7 @@ $ curl -X GET \ ``` -To learn more about using saving and querying objects on Parse Server, check out the [Parse documentation](https://docs.parseplatform.org). +To learn more about using saving and querying objects on Parse Server, check out the [Parse documentation](http://docs.parseplatform.org). ### Connect your app to Parse Server