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
This commit is contained in:
Benjamin Wilson Friedman
2017-04-23 14:59:24 -07:00
committed by Florent Vilmart
parent 69042fbf50
commit d2b5be20a8

View File

@@ -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