Closed bgewehr closed 3 years ago
I'm at least able to request the status:
def statusRemoteAccessHeating(s,url_base):
post_data = {
'triggerAction': False,
}
print(CarNetPostAction(s,url_base, '/-/rah/get-status', post_data))
return 0
and to refresh it from the car before asking also:
def statusReqRemoteAccessHeating(s,url_base):
post_data = {
'triggerAction': False,
}
print(CarNetPostAction(s,url_base, '/-/rah/get-request-status', post_data))
return
You can see a lot of cookie handling here: https://github.com/reneboer/lua-carnet-client/blob/master/vw_carnet.lua
Are you sure @wez3 that we have all the cookies that a browser would collect in our session object?
solved for a longer time now
Hi folks,
I own an Arteon 2.0 TDI Elegance and want to start the remoteAccessHeating with Siri.
I used fiddler to get to know the commands and found out this should work:
But I get the error of
Any idea how to fix that?