The dealer said no to what, being preapproved, or using Ford Options? Is it for them to say how you finance, I thought that wasnāt their call? Fordās option page definitely indicates they want to offer Ford Options for a Lightning.
I'm super curious now about how many priority slots my dealer sold. If there are going to be some backroom dealings, it's definitely going to be in Chicago. ?
Ford offers their leasing-alternative so you can actually take advantage of the $7500 tax credit or whatever the BBB offers if it passes, which you can't leverage with a lease. https://www.ford.com/finance/finance-options/ford-options/
I have this too, and it says I'm preapproved for $40,000. :ROFLMAO: That would not buy much Lightning. Specific to me, it's obviously not what they'd really approve, since I just financed my pb a couple months ago through Ford Credit for more than that. I would treat these numbers as Ford...
It wouldnāt surprise me if they are using high prices to control demand. The prices plus paying sales tax against the full price before getting $7500 back in taxes (if BBB doesnāt pass with the POS credit) is helping squash my enthusiasm. Iām leaning towards being out. Being spoiled by my ā21 pb...
Mirror plug is tapping into the rear view mirrorās power by splicing the wires, or a no-cut option like this: https://www.amazon.com/dp/B088P4VFQ7. It comes and goes as available on Amazon and is also on https://dongar.tech/. I have one too, and it works great!
Yup, check out this thread https://www.f150gen14.com/forum/threads/ford-pass-siri-log-in.7229/.
I think @tonesto7 is working on making his script respond to Siri too (or already has).
Mine does. If this is for a future when ICE vehicles are not being sold to control travel through electricity rationing and you have to make your own gasoline or diesel, youāll be scaveninging to keep vehicles going? Seems scavenging for EVs would work too since thatās what the world will be...
Well, if you want your symbols back (and for the others still having issues and also have ants in their pants waiting until @tonesto7 puts this into an upcoming version), replace line 1152 from the 1.1.1 version of the script with this:
req.body =...
Ok, never mind, I had a dumb. @tonesto7 I just successfully tested it, you were right. The password needs to be URL encoded when you put it in the POST payload. (I didn't pay attention close enough that it does have the application/x-www-form-urlencoded in there). Just needs an encodeURI slapped...
Probably needs Java escaping. Will was getting Error 500: java.lang.IllegalArgumentException back from the server, causing the widget script error. I had him test with raw curl commands to cut out the script as a factor. If I de-laze myself into changing my password to include % and $ and try...
Thanks to @WillB17 , it's safe to say that having either % or $ in your password (maybe both) won't work with the script right now. A quick and dirty way to get around this is to just change your password to have only letters and numbers in it. The script can probably be adapted to handle...
Have you considered your phone may be haunted? ?
If you want, I can share some Mac/Linux terminal commands to use as a test rig to verify your account is ok to pull vehicle data. Useful for isolating if your account is screwy vs the widget script.
Yeah, me too. Propower is the one that I...
Huh. Yes, what you put was fine. Troubleshooting via forum through the Scriptable app is a lot of layers of difficult :ROFLMAO:
What @tonesto7 is doing in the script where it's failing for you is pretty straight-forward. It's just making a call to...
Hmm, interesting. It looks like the issue for you is coming from line 1253. Try replacing line 1253 with this and see what the console says:
let data = await request.loadString();
console.log('data=' + data);
The rest of the script will blow up, but you should get some good console info. Undo...