Welcome to Tesla Motors Club
Discuss Tesla's Model S, Model 3, Model X, Model Y, Cybertruck, Roadster and More.
Register

Recent content by Salvesen

  1. S

    Model S REST API

    Anyone run into NotFound issues after changing the Auth process? So I am sending post/get exactly as before, just using the token from step 3 insted of 4. But it now gives me a NotFound error. Did the end points change? URL change? Anyone know? EDIT: Totally noob error from my side, I was using...
  2. S

    Model S REST API

    After the change, can anyone tell me what needs to be changed? I pulled this straight out from the rest api: Dim request = TryCast(System.Net.WebRequest.Create("https://owner-api.teslamotors.com/oauth/token"), System.Net.HttpWebRequest) request.Method = "POST" request.ContentLength = 0 Dim...
  3. S

    Model S REST API

    Did anyone manage to update their homeseer integration? I was using urlaction to drive my plugin, but as I understand url is not supported in the tesla API anymore, only JSON format and therefor I can not use urlaction. Did anyone find a fix for this yet?
  4. S

    Model S REST API

    I got it working, i used --header and no <> in the token. worked fine.
  5. S

    Model S REST API

    Thanks for usefull help! I have got my token, but when trying to do calls I dont get a respons. As of now I am trying this: curl -H "Authorization: Bearer <2a6906127b5125833a09abaa945db9e5b3e273c5fa9ce7f74ee261ba85af61>" https:/ /owner-api.teslamotors.com/api/1/vehicles
  6. S

    Model S REST API

    Any help on this would be much appritiated. I guess you all do login this way so there has to be some obvius wrong with my call?
  7. S

    Model S REST API

    So I have been trying to use the REST API with cURL as described here: Tesla Model S Remote Access Protocol But for some reason i keep getting "failed to connect to portal.vn.teslamotors.com port 443. timeout." I have used this command as stated in the document: curl -c cookie-jar -F...