Skip to content

Commit

Permalink
Document custom server path initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
raytrask committed Aug 14, 2016
1 parent cd96063 commit 4113b42
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Expand Up @@ -22,6 +22,15 @@ On Parse, you create an App for each of your applications. Each App has its own
Parse.initialize(APP_ID, APP_REST_API_ID);
```

Since Parse.com servers are shutting down in January 2017, an alternate initialization method is needed for custom server URIs.

```Java
Parse.initialize(APP_ID, APP_REST_API_ID, CUSTOM_SERVER_PATH);
```

You can learn how to migrate your existing applications at [Parse migration](https://parse.com/migration). To learn how to setup your own Parse Server and Parse Dashboard, check out [Parse github](https://github.com/ParsePlatform).


Getting Started
---------------

Expand Down

1 comment on commit 4113b42

@SeloSlav
Copy link

@SeloSlav SeloSlav commented on 4113b42 Mar 30, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should mention that the you need the latest snapshot build, 1.5-SNAPSHOT, for this to work:

<dependency>
    <groupId>com.github.thiagolocatelli</groupId>
    <artifactId>parse4j</artifactId>
    <version>1.5-SNAPSHOT</version>
</dependency>

Please sign in to comment.