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
{{ message }}
This repository was archived by the owner on Jan 20, 2024. It is now read-only.
* Implemented RefreshToken, Public-Web app support for OAuth2.0
* Added unit tests and other small changes
Added unit tests for create_payload method, added venv in .gitignore, block of code for setting redirectURI was misplaced
* Added a unit test, fixed bugs
Added the test_authToken_should_differ_if_refresh_token_is_enforced unit test, fixed two bugs in client.py
* Updated the README.md file
* Renamed a test method and added a class docstring for the test class
* Addressed code review requested changes
* Updated SDK version from 1.2.0 to 1.3.0
Updated SDK version from 1.2.0 to 1.3.0 in FuelSDK/__init__.py, client.py, rest.py and setup.py
* Added tests config
* Small changes in FuelSDK/Public_WebAppTests/test_ET_Client.py
Replaced the setUp with setUpClass and updated the docstring
Copy file name to clipboardExpand all lines: README.md
+54-1
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,64 @@
1
-
# FuelSDK-Python v1.2.0
1
+
# FuelSDK-Python v1.3.0
2
2
3
3
Salesforce Marketing Cloud Fuel SDK for Python
4
4
5
5
## Overview
6
6
7
7
The Fuel SDK for Python provides easy access to Salesforce Marketing Cloud's Fuel API Family services, including a collection of REST APIs and a SOAP API. These APIs provide access to Salesforce Marketing Cloud functionality via common collection types such as array/hash.
8
8
9
+
New Features in Version 1.3.0
10
+
------------
11
+
* Added Refresh Token support for OAuth2 authentication
12
+
* Added Web/Public App support for OAuth2 authentication
13
+
14
+
More details on Access Tokens for Web/Public Apps can be found [here](https://developer.salesforce.com/docs/atlas.en-us.mc-app-development.meta/mc-app-development/access-token-app.htm)
* applicationType can have one of the following values: `server`, `public`, `web`. The default value of applicationType is `server`.
61
+
9
62
New Features in Version 1.2.0
10
63
------------
11
64
* Added support for OAuth2 authentication - [More Details](https://developer.salesforce.com/docs/atlas.en-us.mc-app-development.meta/mc-app-development/integration-considerations.htm)
0 commit comments