. . .

Version 2.2.2

Xamarin

We now officially support generated SDKs for Xamarin apps: Xamarin SDK

Secure REST API for modules

In previous versions, custom REST APIs written in native modules had no possibility to check if the code is really executed in the correct backend. With this version, the /spec REST path contains an additional path parameter specifying this very app name like done before in other REST resources. To stay backward compartible, old /spec APIs will still be callable, but may throw authentication exceptions. Therefore it is recommended to update internal scripts or documentation from old URL like

 $HOST/modules/{moduleName}/spec/{pathName}

to the new URL:

 $HOST/modules/{moduleName}/{appName}/spec/{pathName}

(all values in curly braces are meant as placeholders)