Overview
OpenFin uses standard Web practices when handling cookies.
Example
From OpenFin Runtime v9 you need to specify the credentials as required in the fetch call. In ealier versions, it is not mandatory, but recommended to include the "credentials" as part of the fetch:
fetch('http://localhost:8080', {
redirect: 'follow',
credentials: 'include',
headers: new Headers({
'Content-Type': 'text/plain'
})
}).then(console.log);
You can find further information on the usage of fetch found here.
Comments
0 comments
Please sign in to leave a comment.