Whenever calling the v.OpenTrunk("front") or v.OpenTrunk("rear") functions, I get an error 400 Bad Request. Was the API moved or were the names changed?
switch trunk {
case "rear":
case "front":
err := v.OpenTrunk(strings.ToLower(trunk))
if err != nil {
handleError(err, m, "There was an error opening your trunk. Contact @rudi9719 for more information with code %+v")
return
}
default:
k.SendMessageByConvID(m.ConvID, "You must supply front or rear.")
return
}
Whenever calling the v.OpenTrunk("front") or v.OpenTrunk("rear") functions, I get an error 400 Bad Request. Was the API moved or were the names changed?