-
To move my blinds, I have to call a https website that runs on a self signed certificate. Is there a way to ignore the self signed certificate (Like the -k option in curl)? Or could this be added? |
Beta Was this translation helpful? Give feedback.
Answered by
dxdc
Jun 8, 2023
Replies: 1 comment 1 reply
-
@Flyfi2011 you can achieve this by adding the For example: "up_url": {
"url": "http://1.2.3.4/window/up?pos=%%POS%%",
"body": "{}",
"headers": {
"API-Token": "aaabbbcccddd"
},
"method": "PUT",
"maxAttempts": 5,
"retryDelay": 2000,
"time": true,
"rejectUnauthorized": false
}, |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dxdc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Flyfi2011 you can achieve this by adding the
rejectUnauthorized
key to your config, and setting it to false.For example: