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
I've tried using the OVE-Core API endpoint /sections/{id} to change the space that an existing WebRTC app is in and it doesn't appear to move it successfully. Digging a little I was able to determine that the "state" parameter inside the app parameter does not get reflected in the result. Note that this is different from the "states" (plural) parameter which does indeed appear in the new section.
I've tried using the OVE-Core API endpoint
/sections/{id}
to change the space that an existing WebRTC app is in and it doesn't appear to move it successfully. Digging a little I was able to determine that the"state"
parameter inside theapp
parameter does not get reflected in the result. Note that this is different from the"states"
(plural) parameter which does indeed appear in the new section.Current approach is along the lines of what is in this
assign_sections
function: https://github.com/ImperialCollegeLondon/gridlington-vis/blob/main/app/core_api.py#L66It works perfectly fine with HTML apps.
Quickly outlining the steps:
"/sections", params={"includeAppStates": True}
"sections/{id}"
with the data contained in what was received from the previous GET request but changing the"space"
value."state"
parameter is gone and the space doesn't show the webrtc app.The text was updated successfully, but these errors were encountered: