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
The client.portal_session.create().request() is returning an invalid response. It is only including the responseHeaders to the response. The server is returning the portal session, but the library has a bug in core.js responseHandler on line response = new result_1.Result(response, responseHeaders); that causes the response to be dropped and only the responseHeaders get returned.
Reproduce just by calling that API with this library.
Hi @ankero, I'm sorry about the delay in responding to this. I'm able to see this working correctly using the SDK. Sharing the code snipped that works for me:
Hi,
The client.portal_session.create().request() is returning an invalid response. It is only including the responseHeaders to the response. The server is returning the portal session, but the library has a bug in core.js
responseHandler
on lineresponse = new result_1.Result(response, responseHeaders);
that causes the response to be dropped and only the responseHeaders get returned.Reproduce just by calling that API with this library.
Here's the request I made to produce this issue:
Workaround can be done with direct API call, for example:
The text was updated successfully, but these errors were encountered: