Hi @Steveuk23, You can set the cookie inside the code off Echo connect app.
def iniSettings(){
state.cookie = “”
state.csrf = “-2168072530”
state.domain = “https://alexa.amazon.com”
state.loadStatus = “Inactive”
log.trace “state.loadStatus ${state.loadStatus}”
return dynamicPage(name:“iniSettings”, title:“Connect Your Echo devices to SmartThings”, nextPage:“chooseDevices”, install:false, uninstall: true) {
section(“Echo Remote Credentials”) {
paragraph “Get your Echo data from https://alexa.amazon.com\r\n\r\nThe cookie data is to long, you must to split it in 3 parts, go to APP settings in IDE to add the info\r\n\r\nTap ‘Next’ after you have entered the data.\r\n\r\nOnce your request is accepted, SmartThings will scan your Echo devices.”
}
}
}