You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,24 +22,23 @@ Aspose.Email Cloud is a REST API for creating email applications that work with
22
22
- Email configuration discovery.
23
23
- Disposable email address detection.
24
24
25
-
## New features in version 20.10
25
+
## What's new in version 20.12
26
26
27
-
Aspose.Email Cloud 20.10.0 comes with SDK improvements:
27
+
Aspose.Email Cloud 20.12.0 comes with SDK breaking changes:
28
+
- AppKey renamed to ClientSecret.
29
+
- AppSID renamed to ClientId.
28
30
29
-
- Typescript, PHP, Java SDKs now have model builders to simplify their initialization.
30
-
- All SDK methods now have code examples with parameters initialization.
31
-
- Some models now have initialization examples for all SDKs.
32
-
- SDK reference documentation with examples now available at url [docs.aspose.cloud/email/reference-api](https://docs.aspose.cloud/email/reference-api/)
31
+
Some [SDK reference documentation](https://docs.aspose.cloud/email/reference-api/) improvements were made.
33
32
34
-
See [Release notes](https://docs.aspose.cloud/email/aspose-email-cloud-20-10-release-notes/).
33
+
See [Release notes](https://docs.aspose.cloud/email/aspose-email-cloud-20-12-release-notes/).
35
34
36
35
## How to use the SDK?
37
36
The complete source code is available in the [GIT repository](https://github.com/aspose-email-cloud/aspose-email-cloud-java/tree/master/src/main/java/com/aspose/email/cloud/sdk).
38
37
39
38
Use [SDK tutorials](https://docs.aspose.cloud/email/sdk-tutorials/) and [SDK reference documentation](https://docs.aspose.cloud/email/reference-api/).
40
39
41
40
### Prerequisites
42
-
To use this SDK, you need an App SID and an App Key; they can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (it requires free registration in Aspose Cloud for this).
41
+
To use this SDK, you need a Client id and a Client secret; they can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (it requires free registration in Aspose Cloud for this).
43
42
44
43
### Installation
45
44
You can either directly use it in your project via jar file or add it as Maven dependency ([see repo](https://repository.aspose.cloud/repo/com/aspose/aspose-email-cloud/)):
@@ -65,7 +64,7 @@ See more details about SDK installation in this tutorial: [SDK setup](https://do
65
64
### Usage examples
66
65
To use the API, you should create an EmailCloud object:
67
66
```java
68
-
EmailCloud api =newEmailCloud("Your App Key", "Your App SID");
67
+
EmailCloud api =newEmailCloud("Your Client secret", "Your Client id");
0 commit comments