From ed446fa1d24905a4f467dd003c72fdaf1149bf2a Mon Sep 17 00:00:00 2001 From: ryanmcdonough Date: Tue, 2 Jun 2020 16:56:04 +0100 Subject: [PATCH 1/4] Update README.md Fix documentation regarding initializing the ParseClient --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3466feea..2b560d16 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ Then, in your program's entry point, paste the following code, with the text ref ```cs ParseClient.Initialize(new ParseClient.Configuration { - ApplicationID = "", - Key = "", - ServerURI = "" + ApplicationId = "", + WindowsKey = "", + Server = "", }); ``` From ba8e94ed74f987dbd309014511a0bedae616cefa Mon Sep 17 00:00:00 2001 From: ryanmcdonough Date: Tue, 2 Jun 2020 16:57:42 +0100 Subject: [PATCH 2/4] Update README.md Fix description of initialization. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b560d16..2c8a4dcb 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ ParseClient.Initialize(new ParseClient.Configuration }); ``` -`ApplicationID` is your app's `ApplicationId` field from your Parse Server. -`Key` is your app's `DotNetKey` field from your Parse Server. -`ServerURI` is the full URL to your web-hosted Parse Server. +`ApplicationIx` is your app's `ApplicationId` field from your Parse Server. +`WindowsKey` is your app's `DotNetKey` field from your Parse Server. +`Server` is the full URL to your web-hosted Parse Server. If you would like to, you can also set the `MasterKey` property, which will allow the SDK to bypass any CLPs and object permissions that are set. This property should be compatible with read-only master keys as well. From 12366801f589bd0ab87bb1526412be16011031a7 Mon Sep 17 00:00:00 2001 From: ryanmcdonough Date: Tue, 2 Jun 2020 19:27:49 +0100 Subject: [PATCH 3/4] Update README.md Fix typo on ApplicationId --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c8a4dcb..d96c0aca 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ ParseClient.Initialize(new ParseClient.Configuration }); ``` -`ApplicationIx` is your app's `ApplicationId` field from your Parse Server. +`ApplicationId` is your app's `ApplicationId` field from your Parse Server. `WindowsKey` is your app's `DotNetKey` field from your Parse Server. `Server` is the full URL to your web-hosted Parse Server. From 5538e054495ba29571541d8209c80f1e906b0fc6 Mon Sep 17 00:00:00 2001 From: ryanmcdonough Date: Thu, 11 Jun 2020 14:03:13 +0100 Subject: [PATCH 4/4] Update README.md Revert usage of WindowsKey to Key --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d96c0aca..8b5dbd81 100644 --- a/README.md +++ b/README.md @@ -25,13 +25,13 @@ Then, in your program's entry point, paste the following code, with the text ref ParseClient.Initialize(new ParseClient.Configuration { ApplicationId = "", - WindowsKey = "", + Key = "", Server = "", }); ``` `ApplicationId` is your app's `ApplicationId` field from your Parse Server. -`WindowsKey` is your app's `DotNetKey` field from your Parse Server. +`Key` is your app's `DotNetKey` field from your Parse Server. `Server` is the full URL to your web-hosted Parse Server. If you would like to, you can also set the `MasterKey` property, which will allow the SDK to bypass any CLPs and object permissions that are set. This property should be compatible with read-only master keys as well.