Replies: 108 comments 149 replies
-
Can confirm. This may effectively kill off third-party authentication indefinitely until a viable option is provided by Tesla (ie: registering apps). |
Beta Was this translation helpful? Give feedback.
-
A workaround for this is to use embedded web views in the app and capture the Authorization code from the web view. |
Beta Was this translation helpful? Give feedback.
-
I opened an Issue: #392 A bit of a long shot but could use human solving service: It appears the new API piece is: _csrf: rPIvYAwz-131lLqcOXxNPeZmUP-BZzyiGB7k |
Beta Was this translation helpful? Give feedback.
-
I have solved the captcha problem using captcha solver by 2captcha: If you need sample code please reference here:
Exact commit to fix: |
Beta Was this translation helpful? Give feedback.
-
I've updated my Powerwall Companion app to use an integrated WebView for authentication. For any C# devs, you can check out the source code here. I'm using a modified version of my C# TeslaAuth library which follows Tim's API instructions, but steps 2 and 3 are now handled automatically within the web browser. I'll try to package this into a reusable library, but the code to look at is:
HTH |
Beta Was this translation helpful? Give feedback.
-
From what I see it’s still there captcha
…On Sun, May 30, 2021 at 8:48 AM Daniel Castro ***@***.***> wrote:
I was able to put together a solution that works on android and ios using
web views. But it seems Tesla has removed Captcha from their website and
app. This could've just been a test from their end.
For what its worth the community will now have ios as well as android app
to generate their tesla tokens in case Tesla decides to re-add the captcha
layer.
I did attempt a web version but didn't get much success.
We will be integrating this into our service first and we will be open
sourcing the codebase / the app in the coming days!
Hey do you mind sharing your Android solution? I've been playing with the
webview but I'm not a super experienced Android dev
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-803890__;Iw!!IKRxdwAv5BmarQ!LGBg2cyEOLF5fbWxpAGHCPbkoGy91CGcMQEwRivpROz1dCANn0mQq7os-XJdUg$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYDFEFH2Z3MND6WUT53TQJM3JANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!LGBg2cyEOLF5fbWxpAGHCPbkoGy91CGcMQEwRivpROz1dCANn0mQq7r2JUTymg$>
.
|
Beta Was this translation helpful? Give feedback.
-
Our code is fully automated :
https://github.com/fkhera/powerwallCloud
…On Mon, May 31, 2021 at 10:58 PM Patrick Schmidt ***@***.***> wrote:
"Build a UI that signs the user in and writes the token to a file " Of
course i could always do some workarounds like that, but thats no
automation for me, as the user needs to do steps manually and perhaps
regularly ( if a refresh fails after time) ! Tesla finally needs to offer a
real api and not bullshitting users by constantly changing the workflow of
the auth process.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-809494__;Iw!!IKRxdwAv5BmarQ!L7_UlW-Q6Pe9O1_tRIS2hvzo8CBAmo9VrKOX1ot0Yd-yihgQwQ6DP2RVL7CvgQ$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYEOXW6V5YBBPX23AGLTQRZGTANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!L7_UlW-Q6Pe9O1_tRIS2hvzo8CBAmo9VrKOX1ot0Yd-yihgQwQ6DP2Qx4IHNXg$>
.
|
Beta Was this translation helpful? Give feedback.
-
Hi guys, I'm okay with letting my users use another app to obtain a refresh token for now, unless someone can come up with a way to embed the Tesla login form on my website and access the data that way - though I don't think this is allowed security-wise. So I've seen an iOS app recommended for this that's free and seemingly safe, https://apps.apple.com/us/app/auth-app-for-tesla/id1552058613#?platform=iphone . What about an Android solution, do we have one yet? Solely for getting the refresh token for free? |
Beta Was this translation helpful? Give feedback.
-
Its very strange.
When I hit the link directly on my MAC i don't see Captcha, but when I call
it from Raspberry Pi I see the Captcha.
For now my automated code is working correctly with Captcha. maybe a
webrowser view vs python Tesla script calling is a difference not sure.
For now it seems we still need captcha for Python implementation.
…On Tue, Jun 1, 2021 at 12:41 PM bchristian14 ***@***.***> wrote:
hmm...looks like it's gone again (at least for me), as I just went to
troubleshoot/investigate, and my code is working just fine w/out changes
(there were multiple failures on friday for captcha, and scripts didn't run
over the weekend, but worked a few minutes ago)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-812684__;Iw!!IKRxdwAv5BmarQ!P8MypmX5NdBwWyyZnSEm6nDbeQhtBS1T6mG3Mut44SnT5z-eMoUDkvr_A3yu8Q$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYAX6CO6CHBSB2KWKRDTQUZT3ANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!P8MypmX5NdBwWyyZnSEm6nDbeQhtBS1T6mG3Mut44SnT5z-eMoUDkvopHOo6ng$>
.
|
Beta Was this translation helpful? Give feedback.
-
For those of you struggling to get this to work with headless implementations like Python, I was able to solve it (Github) by writing the CAPTCHA image to Google Drive so you can open the image from the Google Drive, prompt the user for the text, and continue with the rest of the authentication flow and retrieve the token. It's a bit inconvenient but you'll only need to do it every 45 days as you would have had to anyway. |
Beta Was this translation helpful? Give feedback.
-
I also solved by using 2captcha service they solve the captcha for you for
a small fee:
https://github.com/fkhera/powerwallCloud
…On Tue, Jun 1, 2021 at 12:53 PM themonomers ***@***.***> wrote:
For those of you struggling to get this to work with headless
implementations like Python, I was able to solve it (Github
<https://urldefense.com/v3/__https://github.com/themonomers/tesla/blob/master/python/TeslaToken.py__;!!IKRxdwAv5BmarQ!KPAEf49KE-ndBNojHU_-Xg_zCAzt32_LEKA5Cxe2qUDNSU-iWmp0cPuXEgg1EQ$>)
by writing the CAPTCHA image to Google Drive so you can open the image from
the Google Drive, prompt the user for the text, and continue with the rest
of the authentication flow and retrieve the token. It's a bit inconvenient
but you'll only need to do it every 45 days as you would have had to anyway.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-812732__;Iw!!IKRxdwAv5BmarQ!KPAEf49KE-ndBNojHU_-Xg_zCAzt32_LEKA5Cxe2qUDNSU-iWmp0cPu2ZoD4dA$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYF3QZI7JXG5562CN3TTQU3CDANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!KPAEf49KE-ndBNojHU_-Xg_zCAzt32_LEKA5Cxe2qUDNSU-iWmp0cPsIoS53zQ$>
.
|
Beta Was this translation helpful? Give feedback.
-
Same exact problem here. For reference/testing i also There is a cli version also, all in python. It still works OK, the one I have was downloaded in Februari. Can you have a look/see how they solve this problem? Would it be possible to snarf the login and wake_up code from TeslaPy ? In another project they speculated it was a old/wrong USER_AGENT, |
Beta Was this translation helpful? Give feedback.
-
please checkt https://auth.tesla.com since approx 30 minutes the captcha code is no longer exists. I tested with few devices. I don't see an Captcha-Code and in my owned written software i don't need longer enter a captcha-code. |
Beta Was this translation helpful? Give feedback.
-
Appears they took it down captcha
…On Sun, Jun 6, 2021 at 2:38 AM Key ***@***.***> wrote:
please checkt https://auth.tesla.com
<https://urldefense.com/v3/__https://auth.tesla.com__;!!IKRxdwAv5BmarQ!NumWpfJgx68alcRV8IUJU_xnxyInGiwpRitwnCQha_ib_nsz779fCF76__8GoQ$>
since approx 30 minutes the captcha code is no longer exists. I tested with
few devices. I don't see an Captcha-Code and in my owned written software i
don't need enter a captcha-code.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-830901__;Iw!!IKRxdwAv5BmarQ!NumWpfJgx68alcRV8IUJU_xnxyInGiwpRitwnCQha_ib_nsz779fCF5v3E4olQ$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYA7BA6OVS5E3VNA6I3TRM627ANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!NumWpfJgx68alcRV8IUJU_xnxyInGiwpRitwnCQha_ib_nsz779fCF7IWdsRog$>
.
|
Beta Was this translation helpful? Give feedback.
-
Did captcha get re enabled I don’t see it on site but auth won’t pass without captcha as of 8pm last night |
Beta Was this translation helpful? Give feedback.
-
Does anyone have. Clue what the difference is between a machine opening
request to Tesla site , human using a browser , and headless browser.
I messed with user agent today I might try selenium and Introducing delays.
The flow works perfectly on live browser there must be a secret sauce there
.
…On Thu, Nov 11, 2021 at 11:47 AM Farooq Khera ***@***.***> wrote:
My guess the other guys don’t do it remotely they might take the user to
actual site.
You need to first login manually Jon did you ready my instructions.
Then you need to replicate cookie and parse out code object.
On Thu, Nov 11, 2021 at 10:40 AM JonG67x ***@***.***> wrote:
> Futile day on this - tried passing all the cookies, tried setting the
> header size, investigated the x-reference-error which seems to be a Atamai
> server error but can't find much, tried verifyhost as false... getting a
> little frustrated. I use PHP and it was working fine before with the
> recaptcha solved for me using a 3rd party. It always comes back to the 403
> - don't have permission to access the web page
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-1627246__;Iw!!IKRxdwAv5BmarQ!Ixq9iwJHC58J95Q8-GWnEZLiaHSJlw1tL4L3GPDFRxz7ObtYL8VyZGUaS6rXQw$>,
> or unsubscribe
> <https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYDMPR3PDWEWU4R3IB3ULP5ZRANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!Ixq9iwJHC58J95Q8-GWnEZLiaHSJlw1tL4L3GPDFRxz7ObtYL8VyZGXAhOBwXw$>
> .
> Triage notifications on the go with GitHub Mobile for iOS
> <https://urldefense.com/v3/__https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675__;!!IKRxdwAv5BmarQ!Ixq9iwJHC58J95Q8-GWnEZLiaHSJlw1tL4L3GPDFRxz7ObtYL8VyZGVkn8vD-w$>
> or Android
> <https://urldefense.com/v3/__https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign*3Dnotification-email*26utm_medium*3Demail*26utm_source*3Dgithub__;JSUlJSU!!IKRxdwAv5BmarQ!Ixq9iwJHC58J95Q8-GWnEZLiaHSJlw1tL4L3GPDFRxz7ObtYL8VyZGUMe2vOcw$>.
>
>
|
Beta Was this translation helpful? Give feedback.
-
I got my code working with selenium and chrome driver, I will have to
figure out how to get it working on raspberry pi, as right now I am on mac.
I will send some update on code, but it basically is automating google
chrome browser now, and taking redirect URL "code param" and sticking that
into owners api calls.
options = Options()
options.add_argument("--window-size=1920x1080")
options.add_argument("--verbose")
# options.add_argument("--headless")
driver = webdriver.Chrome(options=options)
driver.get(auth_url)
driver.find_element_by_name('identity').send_keys(self.email)
driver.find_element_by_name('credential').send_keys(self.password)
# delay
time.sleep(5)
driver.find_element_by_id('form-submit-continue').click()
time.sleep(5)
code_url = driver.current_url
print(driver.current_url)
#resp = session.post(auth_url, headers=headers, data=data,
proxies={'http':'209.208.26.29:8118'}, allow_redirects=False)
# If not MFA This code plays instead , which is parising
location
print "Coming to non MFA flow:"
#code_url = resp.headers["location"]
parsed = urlparse.urlparse(code_url)
code = urlparse.parse_qs(parsed.query)['code']
…On Thu, Nov 11, 2021 at 12:06 PM JonG67x ***@***.***> wrote:
I didn’t try your way but I have my refresh token so I can generate my own
tokens when I need. I’m just trying to get it working automatically for
others. I might need to try though so I can see what a working call is
doing. In the past I’ve seen issues with curl or other programmes where
JavaScript doesn’t get executed but that doesn’t seem to be the issue here.
I guess it might be the referring url (a variation to the recaptcha one),
but I’ve tried setting various values and none have worked.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-1627589__;Iw!!IKRxdwAv5BmarQ!J9V0n_8W7XzPxrXb86P8jcZtVMUuuoZt3r8-WAR6LYcVq1w6igAM2qMHGdITtg$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYF3XUYCMR7JUEKC4QTULQH3NANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!J9V0n_8W7XzPxrXb86P8jcZtVMUuuoZt3r8-WAR6LYcVq1w6igAM2qNm4lyXpw$>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://urldefense.com/v3/__https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675__;!!IKRxdwAv5BmarQ!J9V0n_8W7XzPxrXb86P8jcZtVMUuuoZt3r8-WAR6LYcVq1w6igAM2qNEZl73BQ$>
or Android
<https://urldefense.com/v3/__https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign*3Dnotification-email*26utm_medium*3Demail*26utm_source*3Dgithub__;JSUlJSU!!IKRxdwAv5BmarQ!J9V0n_8W7XzPxrXb86P8jcZtVMUuuoZt3r8-WAR6LYcVq1w6igAM2qPkdGh_7g$>.
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
In my case I've just drop the towel for now. There's no problem refreshing the token and, if required, I'll use a real browser from time to time to generate a new token. |
Beta Was this translation helpful? Give feedback.
-
Does anyone have a tutorial that one could like to how to get the initial Token from the browser? - if that is the case, one can include that and then have the user of the automation input token and go from there (including automatic refresh etc) |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
For web apps, the only way to have the user do the login flow themselves would be to do something like open the page on the server and draw it on a canvas in the user's browser and capture interactions (e.g. VNC). You would not be able to use an iframe or anything like that. Alternatively, you can do the login flow fully server-side like I have here: #501 (comment). The problem with this is you still cannot solve the image captcha - you can just hope that at some point it doesn't come up. I have had luck with this. You could also try opening Step 1 in a new tab/window and instruct the user to paste the URL of the last page, where it says Page Not Found, back into your web app. This also ensures you never have access to their credentials, but it's a lot less user-friendly. For non-web apps, the solution is very simple: open a webview (or similar) that you control that brings the user to step one. Watch for navigation changes until the URL starts with the callback URL. At that point, grab the URL, close the webview, and use the code param from the URL to complete the rest of the steps. You may also need to get the current cookies from the webview. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Thanks, I'll give that a shot!
…On Wed, Jan 12, 2022, 9:59 PM themonomers ***@***.***> wrote:
This is in python 2.7:
`url = 'https://auth.tesla.com/oauth2/v3/token'
payload = {
'grant_type': 'refresh_token',
'client_id': 'ownerapi',
'refresh_token': REFRESH_TOKEN,
'scope': 'openid email offline_access'
}
response = json.loads(requests.post(
url,
json=payload
).text)`
—
Reply to this email directly, view it on GitHub
<#390 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AP2TKCTHK5GNKV66FBU7DCDUVZLZLANCNFSM45VYAD4Q>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I got some working code, (I only use Mac currently for this), I installed
selenium, chrome driver etc.
It appears if you use this combination the browser thinks you are a real
user, no captcha none of that.
This allows you to easily get the code.
THe only downside I have seen is , need to run browser mode, let it open
browser not headless.
Also if you run too many accounts too quickly the firewall seems to pick up
on that, slowly process 1 at a time.
Good luck
https://github.com/fkhera/powerwallCloud/blob/master/authtoken.py
Using this code in combination in package then you can get the auth tokens
…On Wed, Jan 12, 2022 at 11:19 PM bchristian14 ***@***.***> wrote:
It's a shame, as I had been storing the whole token, and calculating the
expiry date, running a cron daily to refresh once it was below 15 days, and
giving me a success/failure notification via text & email, but I just
changed it to run every 6 hours, and only notify on failure.
Funny thing was, I was just telling my wife literally the night before
that it had been running smoothly without incident for months now, and the
very next invocation it started throwing exceptions due to the auth changes
haha. I guess I jinxed it!
—
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-1960261__;Iw!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg7CNCzyZA$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYGQOBYFJJBAP3XQ2TLUVZVIFANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg4mS6U22A$>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://urldefense.com/v3/__https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675__;!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg7CSOg_fw$>
or Android
<https://urldefense.com/v3/__https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign*3Dnotification-email*26utm_medium*3Demail*26utm_source*3Dgithub__;JSUlJSU!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg7tt6NTVg$>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
How long is the refresh token good for?
I can test it right away and it works the same day but I am not sure how
long they last.
I see that in payload its saying it expires later on, example payload::
{"expiredate": "2022-03-01T08:59:25.142461", "access_token":
"qts-988a973fe27a6e63abcd", "created_at": 1642262364, "expires_in":
3888000, "token_type": "bearer", "user": ***@***.***", "refresh_token":
"77d53ace39dfeb70101953ab9d8e913d533b41b626a3083d613ce3e42c31213d"}
…On Sat, Jan 15, 2022 at 9:39 AM Farooq Khera ***@***.***> wrote:
I got some working code, (I only use Mac currently for this), I installed
selenium, chrome driver etc.
It appears if you use this combination the browser thinks you are a real
user, no captcha none of that.
This allows you to easily get the code.
THe only downside I have seen is , need to run browser mode, let it open
browser not headless.
Also if you run too many accounts too quickly the firewall seems to pick
up on that, slowly process 1 at a time.
Good luck
https://github.com/fkhera/powerwallCloud/blob/master/authtoken.py
Using this code in combination in package then you can get the auth tokens
On Wed, Jan 12, 2022 at 11:19 PM bchristian14 ***@***.***>
wrote:
> It's a shame, as I had been storing the whole token, and calculating the
> expiry date, running a cron daily to refresh once it was below 15 days, and
> giving me a success/failure notification via text & email, but I just
> changed it to run every 6 hours, and only notify on failure.
>
> Funny thing was, I was just telling my wife literally the night before
> that it had been running smoothly without incident for months now, and the
> very next invocation it started throwing exceptions due to the auth changes
> haha. I guess I jinxed it!
>
> —
> Reply to this email directly, view it on GitHub
> <https://urldefense.com/v3/__https://github.com/timdorr/tesla-api/discussions/390*discussioncomment-1960261__;Iw!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg7CNCzyZA$>,
> or unsubscribe
> <https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ABU4JYGQOBYFJJBAP3XQ2TLUVZVIFANCNFSM45VYAD4Q__;!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg4mS6U22A$>
> .
> Triage notifications on the go with GitHub Mobile for iOS
> <https://urldefense.com/v3/__https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675__;!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg7CSOg_fw$>
> or Android
> <https://urldefense.com/v3/__https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign*3Dnotification-email*26utm_medium*3Demail*26utm_source*3Dgithub__;JSUlJSU!!IKRxdwAv5BmarQ!LNxSA_SgvUGo2FqsQq3armCb9P6D6K0X0Jck7_v7ePy0CmjA2FjILg7tt6NTVg$>.
>
> You are receiving this because you were mentioned.Message ID:
> ***@***.***>
>
|
Beta Was this translation helpful? Give feedback.
-
So... The auth scripts have broken down. Upon going on the App as well as the Web, it seems Tesla has added a Captcha verification to the Login form. Currently all my existing scripts are not working. Afaik, by passing this captcha might not be possible.
Beta Was this translation helpful? Give feedback.
All reactions