no matter how or what i pass i always get NULL back or the error property is missing and is not optional while i did pass it.
im using javascript to generate a curl command curl -X GET -k -b pveAuthcookie= (ticket gotten from access.ticket) proxmoxserver:8006/api2/json/nodes/node/qemu/vmid/vncwebsocket
from here i have tried several things, passing it as DATA even tho HTTP.GET cannot carry data
i have tried the pvesh -port port -vncticket ticket
and i have tried adding it to the url using
?port=5900&vncticket=ticket gotten from vncproxy
what im trying to accomplish is that when someone clicks a link on my website it opens a tab with a noVNC client thats connected to my proxmox server
https://proxmoxserverip:8006/?console=kvm&novnc=1&vmid=100&vmname=undefined&node=proxmoxTestbak
when i open this it spits out a 401 error unless i open the web GUI first, i would like to login straight away via the API without the user noticing
im using javascript to generate a curl command curl -X GET -k -b pveAuthcookie= (ticket gotten from access.ticket) proxmoxserver:8006/api2/json/nodes/node/qemu/vmid/vncwebsocket
from here i have tried several things, passing it as DATA even tho HTTP.GET cannot carry data
i have tried the pvesh -port port -vncticket ticket
and i have tried adding it to the url using
?port=5900&vncticket=ticket gotten from vncproxy
what im trying to accomplish is that when someone clicks a link on my website it opens a tab with a noVNC client thats connected to my proxmox server
https://proxmoxserverip:8006/?console=kvm&novnc=1&vmid=100&vmname=undefined&node=proxmoxTestbak
when i open this it spits out a 401 error unless i open the web GUI first, i would like to login straight away via the API without the user noticing