Selaa lähdekoodia

Remove client key from examples

Héctor Ramos 9 vuotta sitten
vanhempi
commit
66566fe392
1 muutettua tiedostoa jossa 0 lisäystä ja 2 poistoa
  1. 0 2
      README.md

+ 0 - 2
README.md

@@ -129,7 +129,6 @@ Example using it on Android:
 
 Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
   .applicationId("myAppId")
-  .clientKey("myClientKey")
   .server("http://myServerUrl/parse/")   // '/' important after 'parse'
   .build());
 
@@ -144,7 +143,6 @@ Example using it on iOS (Swift):
 Parse.initializeWithConfiguration(ParseClientConfiguration(block: { (configuration: ParseMutableClientConfiguration) -> Void in
   configuration.server = "https://<# Your Server URL #>/parse/" // '/' important after 'parse'
   configuration.applicationId = "<# Your APP_ID #>"
-  configuration.clientKey = "<# Your CLIENT_KEY #>"
 }))
 ```
 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.