File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,12 @@ Developer Preview 0.1.3
6363* iOS: Fixed bug in link account.
6464
6565# 0.1.4
66- Developer Preview 0.1.3
66+ Developer Preview 0.1.4
6767
6868* Updated Android Core SDK v5.1.6
6969* Added setSession interface.
70+
71+ # 0.1.5
72+ Developer Preview 0.1.5
73+
74+ * Added mobile SSO support using CLP.
Original file line number Diff line number Diff line change @@ -161,6 +161,24 @@ Screen-Sets events (event, map).
161161event - actual event name.
162162map - event data map.
163163
164+ ## Mobile SSO
165+
166+ The plugin supports the native SDK's "Single Sign On feature".
167+ [ Andorid] ( https://sap.github.io/gigya-android-sdk/sdk-core/#sso-single-sign-on )
168+ [ iOS] ( https://sap.github.io/gigya-swift-sdk/GigyaSwift/#sso-single-sign-on )
169+
170+ Please make sure to implement the nessesary steps described for each platform.
171+
172+ To initiate the flow run the following snippet.
173+ ```
174+ GigyaSdk.instance.sso().then((result) {
175+ // Handle result here.
176+ setState(() { });
177+ }).catchError((error) {
178+ // Handle error here.
179+ });
180+ ```
181+
164182## Resolving interruptions
165183
166184Much like the our core SDKs, resolving interruptions is available using the plugin.
Original file line number Diff line number Diff line change 11name : gigya_flutter_plugin
22description : SAP Gigya Flutter plugin
3- version : 0.1.4
3+ version : 0.1.5
44homepage : https://github.com/SAP/gigya-flutter-plugin
55
66environment :
You can’t perform that action at this time.
0 commit comments