Handling cookies for Mobile App

W5.1.4
Mobile App

It seems that the option to set the sameSite property in security provider has no impact - looking at the provider.js file, it appears that it only allows true/false in a falsy expression (line 22) this needs to allow the value of the sameSite setting e.g. ‘None’

e.g.

sameSite: opts.sameSite || 'Strict',
1 Like

Bump
Also just found that the Set Cookie SC API step samesite option has no effect for the same reason

@patrick,
Can I just check that you saw the last post - it is in both the Security Provider and Set Cookie elements

Thanks for sorting :+1:

In the setcookie action I’ve changed it to sameSite: options.sameSite || false and in the security provider sameSite: opts.sameSite || 'Strict' having Strict as default for the security cookie.

perfect! Thanks

Fixed in Wappler 5.3.3

This topic was automatically closed after 26 hours. New replies are no longer allowed.