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
omit: Never send or receive cookies.
same-origin: Send user credentials (cookies, basic http auth, etc..) if the URL is on the same origin as the calling script. This is the default value.
include: Always send user credentials (cookies, basic http auth, etc..), even for cross-origin calls.
The text was updated successfully, but these errors were encountered:
globalpayments-3ds-js/src/lib/make-request.ts
Line 20 in 2175eef
This causes an issue in my application as my cookies are not sent in the request to check3dsVersion or initiateAuthentication
As per https://developer.mozilla.org/en-US/docs/Web/API/Request/credentials, this should be changed to 'same-origin':
The text was updated successfully, but these errors were encountered: