Skip to content

Commit 66566fe

Browse files
committed
Remove client key from examples
1 parent 704e1da commit 66566fe

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ Example using it on Android:
129129

130130
Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
131131
.applicationId("myAppId")
132-
.clientKey("myClientKey")
133132
.server("http://myServerUrl/parse/") // '/' important after 'parse'
134133
.build());
135134

@@ -144,7 +143,6 @@ Example using it on iOS (Swift):
144143
Parse.initializeWithConfiguration(ParseClientConfiguration(block: { (configuration: ParseMutableClientConfiguration) -> Void in
145144
configuration.server = "https://<# Your Server URL #>/parse/" // '/' important after 'parse'
146145
configuration.applicationId = "<# Your APP_ID #>"
147-
configuration.clientKey = "<# Your CLIENT_KEY #>"
148146
}))
149147
```
150148
You can change the server URL in all of the open-source SDKs, but we're releasing new builds which provide initialization time configuration of this property.

0 commit comments

Comments
 (0)