tesla_api 0.9.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +0 -2
- data/lib/tesla_api/vehicle.rb +32 -20
- data/lib/tesla_api/version.rb +1 -1
- data/spec/cassettes/vehicle-auto_conditioning_start.yml +130 -0
- data/spec/cassettes/vehicle-auto_conditioning_stop.yml +130 -0
- data/spec/cassettes/vehicle-charge_max_range-twice.yml +171 -0
- data/spec/cassettes/vehicle-charge_max_range.yml +130 -0
- data/spec/cassettes/vehicle-charge_port_door_open.yml +130 -0
- data/spec/cassettes/vehicle-charge_standard-twice.yml +171 -0
- data/spec/cassettes/vehicle-charge_standard.yml +130 -0
- data/spec/cassettes/vehicle-charge_start.yml +130 -0
- data/spec/cassettes/vehicle-charge_state.yml +130 -0
- data/spec/cassettes/vehicle-charge_stop.yml +130 -0
- data/spec/cassettes/vehicle-climate_state.yml +130 -0
- data/spec/cassettes/vehicle-door_lock.yml +130 -0
- data/spec/cassettes/vehicle-door_unlock.yml +130 -0
- data/spec/cassettes/vehicle-drive_state.yml +130 -0
- data/spec/cassettes/vehicle-flash_lights.yml +130 -0
- data/spec/cassettes/vehicle-gui_settings.yml +130 -0
- data/spec/cassettes/vehicle-honk_horn.yml +130 -0
- data/spec/cassettes/vehicle-mobile_enabled.yml +130 -0
- data/spec/cassettes/vehicle-open_frunk.yml +128 -0
- data/spec/cassettes/vehicle-open_trunk.yml +128 -0
- data/spec/cassettes/vehicle-remove_start_drive.yml +130 -0
- data/spec/cassettes/vehicle-set_charge_limit-1.yml +169 -0
- data/spec/cassettes/vehicle-set_charge_limit-100.yml +130 -0
- data/spec/cassettes/vehicle-set_charge_limit-50.yml +128 -0
- data/spec/cassettes/vehicle-set_charge_limit-90.yml +128 -0
- data/spec/cassettes/vehicle-set_temps-70-70.yml +130 -0
- data/spec/cassettes/vehicle-set_temps-75-65.yml +130 -0
- data/spec/cassettes/vehicle-sun_roof_control-close.yml +130 -0
- data/spec/cassettes/vehicle-sun_roof_control-comfort.yml +130 -0
- data/spec/cassettes/vehicle-sun_roof_control-open.yml +130 -0
- data/spec/cassettes/vehicle-sun_roof_control-vent.yml +130 -0
- data/spec/cassettes/vehicle-sun_roof_move-0.yml +130 -0
- data/spec/cassettes/vehicle-sun_roof_move-100.yml +130 -0
- data/spec/cassettes/vehicle-sun_roof_move-50.yml +130 -0
- data/spec/cassettes/vehicle-vehicle_state.yml +130 -0
- data/spec/cassettes/vehicle-wake_up.yml +130 -0
- data/spec/lib/tesla_api/vehicle_spec.rb +228 -0
- data/spec/spec_helper.rb +12 -4
- data/tesla_api.gemspec +2 -0
- metadata +102 -2
| @@ -0,0 +1,130 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://owner-api.teslamotors.com/oauth/token
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: grant_type=password&client_id=<TESLA_CLIENT_ID>&client_secret=<TESLA_CLIENT_SECRET>&email=<TESLA_EMAIL>&password=<TESLA_PASS>
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept-Encoding:
         | 
| 11 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - "*/*"
         | 
| 14 | 
            +
                  User-Agent:
         | 
| 15 | 
            +
                  - Ruby
         | 
| 16 | 
            +
              response:
         | 
| 17 | 
            +
                status:
         | 
| 18 | 
            +
                  code: 200
         | 
| 19 | 
            +
                  message: OK
         | 
| 20 | 
            +
                headers:
         | 
| 21 | 
            +
                  Server:
         | 
| 22 | 
            +
                  - nginx
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Wed, 17 Dec 2014 01:02:59 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - application/json; charset=utf-8
         | 
| 27 | 
            +
                  Transfer-Encoding:
         | 
| 28 | 
            +
                  - chunked
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Status:
         | 
| 32 | 
            +
                  - 200 OK
         | 
| 33 | 
            +
                  Cache-Control:
         | 
| 34 | 
            +
                  - no-store
         | 
| 35 | 
            +
                  Pragma:
         | 
| 36 | 
            +
                  - no-cache
         | 
| 37 | 
            +
                  X-Ua-Compatible:
         | 
| 38 | 
            +
                  - IE=Edge,chrome=1
         | 
| 39 | 
            +
                  X-Request-Id:
         | 
| 40 | 
            +
                  - e958194a4359716e2882e8c49831a696
         | 
| 41 | 
            +
                  X-Runtime:
         | 
| 42 | 
            +
                  - '0.447073'
         | 
| 43 | 
            +
                body:
         | 
| 44 | 
            +
                  encoding: UTF-8
         | 
| 45 | 
            +
                  string: '{"access_token":"71591bda266087e20470fe02f8f2fda1ca8da6b18ab1c1a28f9f3d4ef3d6bf11","token_type":"bearer","expires_in":7776000}'
         | 
| 46 | 
            +
                http_version: 
         | 
| 47 | 
            +
              recorded_at: Wed, 17 Dec 2014 01:03:01 GMT
         | 
| 48 | 
            +
            - request:
         | 
| 49 | 
            +
                method: get
         | 
| 50 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles
         | 
| 51 | 
            +
                body:
         | 
| 52 | 
            +
                  encoding: US-ASCII
         | 
| 53 | 
            +
                  string: ''
         | 
| 54 | 
            +
                headers:
         | 
| 55 | 
            +
                  Authorization:
         | 
| 56 | 
            +
                  - Bearer 71591bda266087e20470fe02f8f2fda1ca8da6b18ab1c1a28f9f3d4ef3d6bf11
         | 
| 57 | 
            +
              response:
         | 
| 58 | 
            +
                status:
         | 
| 59 | 
            +
                  code: 200
         | 
| 60 | 
            +
                  message: OK
         | 
| 61 | 
            +
                headers:
         | 
| 62 | 
            +
                  Server:
         | 
| 63 | 
            +
                  - nginx
         | 
| 64 | 
            +
                  Date:
         | 
| 65 | 
            +
                  - Wed, 17 Dec 2014 01:03:00 GMT
         | 
| 66 | 
            +
                  Content-Type:
         | 
| 67 | 
            +
                  - application/json; charset=utf-8
         | 
| 68 | 
            +
                  Content-Length:
         | 
| 69 | 
            +
                  - '446'
         | 
| 70 | 
            +
                  Connection:
         | 
| 71 | 
            +
                  - keep-alive
         | 
| 72 | 
            +
                  Status:
         | 
| 73 | 
            +
                  - 200 OK
         | 
| 74 | 
            +
                  X-Ua-Compatible:
         | 
| 75 | 
            +
                  - IE=Edge,chrome=1
         | 
| 76 | 
            +
                  Etag:
         | 
| 77 | 
            +
                  - '"900c699a9c4c6d36d87b1902a2fda748"'
         | 
| 78 | 
            +
                  Cache-Control:
         | 
| 79 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 80 | 
            +
                  X-Request-Id:
         | 
| 81 | 
            +
                  - 0a5cb286b559a55a6fd7f50bd0199e7c
         | 
| 82 | 
            +
                  X-Runtime:
         | 
| 83 | 
            +
                  - '0.105899'
         | 
| 84 | 
            +
                body:
         | 
| 85 | 
            +
                  encoding: UTF-8
         | 
| 86 | 
            +
                  string: '{"response":[{"color":null,"display_name":"Nikola","id":1514029006966957156,"option_codes":"MS01,RENA,TM00,DRLH,PF00,BT85,PBCW,RFPO,WT19,IBMB,IDPB,TR00,SU01,SC01,TP01,AU01,CH00,HP00,PA00,PS00,AD02,X020,X025,X001,X003,X007,X011,X013,COUS","vehicle_id":490215852,"vin":"5YJSA1CN5CFP01657","tokens":["a1f3fab6393d3a6a","91a139ce322eed65"],"state":"online","remote_start_enabled":true,"calendar_enabled":true,"notifications_enabled":true}],"count":1}'
         | 
| 87 | 
            +
                http_version: 
         | 
| 88 | 
            +
              recorded_at: Wed, 17 Dec 2014 01:03:02 GMT
         | 
| 89 | 
            +
            - request:
         | 
| 90 | 
            +
                method: post
         | 
| 91 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles/1514029006966957156/command/charge_start
         | 
| 92 | 
            +
                body:
         | 
| 93 | 
            +
                  encoding: UTF-8
         | 
| 94 | 
            +
                  string: ''
         | 
| 95 | 
            +
                headers:
         | 
| 96 | 
            +
                  Authorization:
         | 
| 97 | 
            +
                  - Bearer 71591bda266087e20470fe02f8f2fda1ca8da6b18ab1c1a28f9f3d4ef3d6bf11
         | 
| 98 | 
            +
              response:
         | 
| 99 | 
            +
                status:
         | 
| 100 | 
            +
                  code: 200
         | 
| 101 | 
            +
                  message: OK
         | 
| 102 | 
            +
                headers:
         | 
| 103 | 
            +
                  Server:
         | 
| 104 | 
            +
                  - nginx
         | 
| 105 | 
            +
                  Date:
         | 
| 106 | 
            +
                  - Wed, 17 Dec 2014 01:03:00 GMT
         | 
| 107 | 
            +
                  Content-Type:
         | 
| 108 | 
            +
                  - application/json; charset=utf-8
         | 
| 109 | 
            +
                  Content-Length:
         | 
| 110 | 
            +
                  - '40'
         | 
| 111 | 
            +
                  Connection:
         | 
| 112 | 
            +
                  - keep-alive
         | 
| 113 | 
            +
                  Status:
         | 
| 114 | 
            +
                  - 200 OK
         | 
| 115 | 
            +
                  X-Ua-Compatible:
         | 
| 116 | 
            +
                  - IE=Edge,chrome=1
         | 
| 117 | 
            +
                  Etag:
         | 
| 118 | 
            +
                  - '"f67eec105dd6522783a1f1bacc52723a"'
         | 
| 119 | 
            +
                  Cache-Control:
         | 
| 120 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 121 | 
            +
                  X-Request-Id:
         | 
| 122 | 
            +
                  - 66d8a87dc19ed590a30fe5036ca973bc
         | 
| 123 | 
            +
                  X-Runtime:
         | 
| 124 | 
            +
                  - '0.232926'
         | 
| 125 | 
            +
                body:
         | 
| 126 | 
            +
                  encoding: UTF-8
         | 
| 127 | 
            +
                  string: '{"response":{"reason":"","result":true}}'
         | 
| 128 | 
            +
                http_version: 
         | 
| 129 | 
            +
              recorded_at: Wed, 17 Dec 2014 01:03:02 GMT
         | 
| 130 | 
            +
            recorded_with: VCR 2.9.3
         | 
| @@ -0,0 +1,130 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://owner-api.teslamotors.com/oauth/token
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: grant_type=password&client_id=<TESLA_CLIENT_ID>&client_secret=<TESLA_CLIENT_SECRET>&email=<TESLA_EMAIL>&password=<TESLA_PASS>
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept-Encoding:
         | 
| 11 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - "*/*"
         | 
| 14 | 
            +
                  User-Agent:
         | 
| 15 | 
            +
                  - Ruby
         | 
| 16 | 
            +
              response:
         | 
| 17 | 
            +
                status:
         | 
| 18 | 
            +
                  code: 200
         | 
| 19 | 
            +
                  message: OK
         | 
| 20 | 
            +
                headers:
         | 
| 21 | 
            +
                  Server:
         | 
| 22 | 
            +
                  - nginx
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Wed, 17 Dec 2014 00:18:20 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - application/json; charset=utf-8
         | 
| 27 | 
            +
                  Transfer-Encoding:
         | 
| 28 | 
            +
                  - chunked
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Status:
         | 
| 32 | 
            +
                  - 200 OK
         | 
| 33 | 
            +
                  Cache-Control:
         | 
| 34 | 
            +
                  - no-store
         | 
| 35 | 
            +
                  Pragma:
         | 
| 36 | 
            +
                  - no-cache
         | 
| 37 | 
            +
                  X-Ua-Compatible:
         | 
| 38 | 
            +
                  - IE=Edge,chrome=1
         | 
| 39 | 
            +
                  X-Request-Id:
         | 
| 40 | 
            +
                  - a4432ee502d03559a34184a99e9c8250
         | 
| 41 | 
            +
                  X-Runtime:
         | 
| 42 | 
            +
                  - '0.413855'
         | 
| 43 | 
            +
                body:
         | 
| 44 | 
            +
                  encoding: UTF-8
         | 
| 45 | 
            +
                  string: '{"access_token":"15946d347785c499bdeba92c7088b8e543265fba3cc35339707abfd875c09f70","token_type":"bearer","expires_in":7776000}'
         | 
| 46 | 
            +
                http_version: 
         | 
| 47 | 
            +
              recorded_at: Wed, 17 Dec 2014 00:18:22 GMT
         | 
| 48 | 
            +
            - request:
         | 
| 49 | 
            +
                method: get
         | 
| 50 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles
         | 
| 51 | 
            +
                body:
         | 
| 52 | 
            +
                  encoding: US-ASCII
         | 
| 53 | 
            +
                  string: ''
         | 
| 54 | 
            +
                headers:
         | 
| 55 | 
            +
                  Authorization:
         | 
| 56 | 
            +
                  - Bearer 15946d347785c499bdeba92c7088b8e543265fba3cc35339707abfd875c09f70
         | 
| 57 | 
            +
              response:
         | 
| 58 | 
            +
                status:
         | 
| 59 | 
            +
                  code: 200
         | 
| 60 | 
            +
                  message: OK
         | 
| 61 | 
            +
                headers:
         | 
| 62 | 
            +
                  Server:
         | 
| 63 | 
            +
                  - nginx
         | 
| 64 | 
            +
                  Date:
         | 
| 65 | 
            +
                  - Wed, 17 Dec 2014 00:18:21 GMT
         | 
| 66 | 
            +
                  Content-Type:
         | 
| 67 | 
            +
                  - application/json; charset=utf-8
         | 
| 68 | 
            +
                  Content-Length:
         | 
| 69 | 
            +
                  - '446'
         | 
| 70 | 
            +
                  Connection:
         | 
| 71 | 
            +
                  - keep-alive
         | 
| 72 | 
            +
                  Status:
         | 
| 73 | 
            +
                  - 200 OK
         | 
| 74 | 
            +
                  X-Ua-Compatible:
         | 
| 75 | 
            +
                  - IE=Edge,chrome=1
         | 
| 76 | 
            +
                  Etag:
         | 
| 77 | 
            +
                  - '"c5d083718f906b7336fb8b28fcc87b6c"'
         | 
| 78 | 
            +
                  Cache-Control:
         | 
| 79 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 80 | 
            +
                  X-Request-Id:
         | 
| 81 | 
            +
                  - 54ea59680bf3b823b2a8e76c585b9b6c
         | 
| 82 | 
            +
                  X-Runtime:
         | 
| 83 | 
            +
                  - '0.060762'
         | 
| 84 | 
            +
                body:
         | 
| 85 | 
            +
                  encoding: UTF-8
         | 
| 86 | 
            +
                  string: '{"response":[{"color":null,"display_name":"Nikola","id":1514029006966957156,"option_codes":"MS01,RENA,TM00,DRLH,PF00,BT85,PBCW,RFPO,WT19,IBMB,IDPB,TR00,SU01,SC01,TP01,AU01,CH00,HP00,PA00,PS00,AD02,X020,X025,X001,X003,X007,X011,X013,COUS","vehicle_id":490215852,"vin":"5YJSA1CN5CFP01657","tokens":["6b6e59059375f282","09b1673648be8c08"],"state":"online","remote_start_enabled":true,"calendar_enabled":true,"notifications_enabled":true}],"count":1}'
         | 
| 87 | 
            +
                http_version: 
         | 
| 88 | 
            +
              recorded_at: Wed, 17 Dec 2014 00:18:22 GMT
         | 
| 89 | 
            +
            - request:
         | 
| 90 | 
            +
                method: get
         | 
| 91 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles/1514029006966957156/data_request/charge_state
         | 
| 92 | 
            +
                body:
         | 
| 93 | 
            +
                  encoding: US-ASCII
         | 
| 94 | 
            +
                  string: ''
         | 
| 95 | 
            +
                headers:
         | 
| 96 | 
            +
                  Authorization:
         | 
| 97 | 
            +
                  - Bearer 15946d347785c499bdeba92c7088b8e543265fba3cc35339707abfd875c09f70
         | 
| 98 | 
            +
              response:
         | 
| 99 | 
            +
                status:
         | 
| 100 | 
            +
                  code: 200
         | 
| 101 | 
            +
                  message: OK
         | 
| 102 | 
            +
                headers:
         | 
| 103 | 
            +
                  Server:
         | 
| 104 | 
            +
                  - nginx
         | 
| 105 | 
            +
                  Date:
         | 
| 106 | 
            +
                  - Wed, 17 Dec 2014 00:18:24 GMT
         | 
| 107 | 
            +
                  Content-Type:
         | 
| 108 | 
            +
                  - application/json; charset=utf-8
         | 
| 109 | 
            +
                  Content-Length:
         | 
| 110 | 
            +
                  - '945'
         | 
| 111 | 
            +
                  Connection:
         | 
| 112 | 
            +
                  - keep-alive
         | 
| 113 | 
            +
                  Status:
         | 
| 114 | 
            +
                  - 200 OK
         | 
| 115 | 
            +
                  X-Ua-Compatible:
         | 
| 116 | 
            +
                  - IE=Edge,chrome=1
         | 
| 117 | 
            +
                  Etag:
         | 
| 118 | 
            +
                  - '"69ee67fed559493cfe13612b2bfe9561"'
         | 
| 119 | 
            +
                  Cache-Control:
         | 
| 120 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 121 | 
            +
                  X-Request-Id:
         | 
| 122 | 
            +
                  - 3fb99de88c44c2dafa3018b45d054d57
         | 
| 123 | 
            +
                  X-Runtime:
         | 
| 124 | 
            +
                  - '3.313512'
         | 
| 125 | 
            +
                body:
         | 
| 126 | 
            +
                  encoding: UTF-8
         | 
| 127 | 
            +
                  string: '{"response":{"charging_state":"Disconnected","charge_limit_soc":90,"charge_limit_soc_std":90,"charge_limit_soc_min":50,"charge_limit_soc_max":100,"charge_to_max_range":false,"battery_heater_on":null,"not_enough_power_to_heat":null,"max_range_charge_counter":0,"fast_charger_present":false,"fast_charger_type":"<invalid>","battery_range":197.95,"est_battery_range":142.23,"ideal_battery_range":224.1,"battery_level":78,"usable_battery_level":78,"battery_current":-0.3,"charge_energy_added":33.8,"charge_miles_added_rated":112.5,"charge_miles_added_ideal":127.5,"charger_voltage":null,"charger_pilot_current":null,"charger_actual_current":null,"charger_power":null,"time_to_full_charge":null,"charge_rate":0.0,"charge_port_door_open":false,"motorized_charge_port":false,"scheduled_charging_start_time":null,"scheduled_charging_pending":false,"user_charge_enable_request":null,"charge_enable_request":true,"eu_vehicle":false,"charger_phases":null}}'
         | 
| 128 | 
            +
                http_version: 
         | 
| 129 | 
            +
              recorded_at: Wed, 17 Dec 2014 00:18:26 GMT
         | 
| 130 | 
            +
            recorded_with: VCR 2.9.3
         | 
| @@ -0,0 +1,130 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://owner-api.teslamotors.com/oauth/token
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: grant_type=password&client_id=<TESLA_CLIENT_ID>&client_secret=<TESLA_CLIENT_SECRET>&email=<TESLA_EMAIL>&password=<TESLA_PASS>
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept-Encoding:
         | 
| 11 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - "*/*"
         | 
| 14 | 
            +
                  User-Agent:
         | 
| 15 | 
            +
                  - Ruby
         | 
| 16 | 
            +
              response:
         | 
| 17 | 
            +
                status:
         | 
| 18 | 
            +
                  code: 200
         | 
| 19 | 
            +
                  message: OK
         | 
| 20 | 
            +
                headers:
         | 
| 21 | 
            +
                  Server:
         | 
| 22 | 
            +
                  - nginx
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Wed, 17 Dec 2014 01:03:36 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - application/json; charset=utf-8
         | 
| 27 | 
            +
                  Transfer-Encoding:
         | 
| 28 | 
            +
                  - chunked
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Status:
         | 
| 32 | 
            +
                  - 200 OK
         | 
| 33 | 
            +
                  Cache-Control:
         | 
| 34 | 
            +
                  - no-store
         | 
| 35 | 
            +
                  Pragma:
         | 
| 36 | 
            +
                  - no-cache
         | 
| 37 | 
            +
                  X-Ua-Compatible:
         | 
| 38 | 
            +
                  - IE=Edge,chrome=1
         | 
| 39 | 
            +
                  X-Request-Id:
         | 
| 40 | 
            +
                  - dec86095897416efc871bb0963f6af55
         | 
| 41 | 
            +
                  X-Runtime:
         | 
| 42 | 
            +
                  - '0.410416'
         | 
| 43 | 
            +
                body:
         | 
| 44 | 
            +
                  encoding: UTF-8
         | 
| 45 | 
            +
                  string: '{"access_token":"55bb0930594ab9488513ac0fb3b4b9b1ee3ed749ee39520f7d53fa59c96d7fd9","token_type":"bearer","expires_in":7776000}'
         | 
| 46 | 
            +
                http_version: 
         | 
| 47 | 
            +
              recorded_at: Wed, 17 Dec 2014 01:03:38 GMT
         | 
| 48 | 
            +
            - request:
         | 
| 49 | 
            +
                method: get
         | 
| 50 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles
         | 
| 51 | 
            +
                body:
         | 
| 52 | 
            +
                  encoding: US-ASCII
         | 
| 53 | 
            +
                  string: ''
         | 
| 54 | 
            +
                headers:
         | 
| 55 | 
            +
                  Authorization:
         | 
| 56 | 
            +
                  - Bearer 55bb0930594ab9488513ac0fb3b4b9b1ee3ed749ee39520f7d53fa59c96d7fd9
         | 
| 57 | 
            +
              response:
         | 
| 58 | 
            +
                status:
         | 
| 59 | 
            +
                  code: 200
         | 
| 60 | 
            +
                  message: OK
         | 
| 61 | 
            +
                headers:
         | 
| 62 | 
            +
                  Server:
         | 
| 63 | 
            +
                  - nginx
         | 
| 64 | 
            +
                  Date:
         | 
| 65 | 
            +
                  - Wed, 17 Dec 2014 01:03:37 GMT
         | 
| 66 | 
            +
                  Content-Type:
         | 
| 67 | 
            +
                  - application/json; charset=utf-8
         | 
| 68 | 
            +
                  Content-Length:
         | 
| 69 | 
            +
                  - '446'
         | 
| 70 | 
            +
                  Connection:
         | 
| 71 | 
            +
                  - keep-alive
         | 
| 72 | 
            +
                  Status:
         | 
| 73 | 
            +
                  - 200 OK
         | 
| 74 | 
            +
                  X-Ua-Compatible:
         | 
| 75 | 
            +
                  - IE=Edge,chrome=1
         | 
| 76 | 
            +
                  Etag:
         | 
| 77 | 
            +
                  - '"900c699a9c4c6d36d87b1902a2fda748"'
         | 
| 78 | 
            +
                  Cache-Control:
         | 
| 79 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 80 | 
            +
                  X-Request-Id:
         | 
| 81 | 
            +
                  - 5931934aa88b37a81731e7e8ebfd4c48
         | 
| 82 | 
            +
                  X-Runtime:
         | 
| 83 | 
            +
                  - '0.061113'
         | 
| 84 | 
            +
                body:
         | 
| 85 | 
            +
                  encoding: UTF-8
         | 
| 86 | 
            +
                  string: '{"response":[{"color":null,"display_name":"Nikola","id":1514029006966957156,"option_codes":"MS01,RENA,TM00,DRLH,PF00,BT85,PBCW,RFPO,WT19,IBMB,IDPB,TR00,SU01,SC01,TP01,AU01,CH00,HP00,PA00,PS00,AD02,X020,X025,X001,X003,X007,X011,X013,COUS","vehicle_id":490215852,"vin":"5YJSA1CN5CFP01657","tokens":["a1f3fab6393d3a6a","91a139ce322eed65"],"state":"online","remote_start_enabled":true,"calendar_enabled":true,"notifications_enabled":true}],"count":1}'
         | 
| 87 | 
            +
                http_version: 
         | 
| 88 | 
            +
              recorded_at: Wed, 17 Dec 2014 01:03:39 GMT
         | 
| 89 | 
            +
            - request:
         | 
| 90 | 
            +
                method: post
         | 
| 91 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles/1514029006966957156/command/charge_stop
         | 
| 92 | 
            +
                body:
         | 
| 93 | 
            +
                  encoding: UTF-8
         | 
| 94 | 
            +
                  string: ''
         | 
| 95 | 
            +
                headers:
         | 
| 96 | 
            +
                  Authorization:
         | 
| 97 | 
            +
                  - Bearer 55bb0930594ab9488513ac0fb3b4b9b1ee3ed749ee39520f7d53fa59c96d7fd9
         | 
| 98 | 
            +
              response:
         | 
| 99 | 
            +
                status:
         | 
| 100 | 
            +
                  code: 200
         | 
| 101 | 
            +
                  message: OK
         | 
| 102 | 
            +
                headers:
         | 
| 103 | 
            +
                  Server:
         | 
| 104 | 
            +
                  - nginx
         | 
| 105 | 
            +
                  Date:
         | 
| 106 | 
            +
                  - Wed, 17 Dec 2014 01:03:38 GMT
         | 
| 107 | 
            +
                  Content-Type:
         | 
| 108 | 
            +
                  - application/json; charset=utf-8
         | 
| 109 | 
            +
                  Content-Length:
         | 
| 110 | 
            +
                  - '40'
         | 
| 111 | 
            +
                  Connection:
         | 
| 112 | 
            +
                  - keep-alive
         | 
| 113 | 
            +
                  Status:
         | 
| 114 | 
            +
                  - 200 OK
         | 
| 115 | 
            +
                  X-Ua-Compatible:
         | 
| 116 | 
            +
                  - IE=Edge,chrome=1
         | 
| 117 | 
            +
                  Etag:
         | 
| 118 | 
            +
                  - '"f67eec105dd6522783a1f1bacc52723a"'
         | 
| 119 | 
            +
                  Cache-Control:
         | 
| 120 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 121 | 
            +
                  X-Request-Id:
         | 
| 122 | 
            +
                  - bb8c6db86172e67855fb1685628aa49c
         | 
| 123 | 
            +
                  X-Runtime:
         | 
| 124 | 
            +
                  - '0.255981'
         | 
| 125 | 
            +
                body:
         | 
| 126 | 
            +
                  encoding: UTF-8
         | 
| 127 | 
            +
                  string: '{"response":{"reason":"","result":true}}'
         | 
| 128 | 
            +
                http_version: 
         | 
| 129 | 
            +
              recorded_at: Wed, 17 Dec 2014 01:03:39 GMT
         | 
| 130 | 
            +
            recorded_with: VCR 2.9.3
         | 
| @@ -0,0 +1,130 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://owner-api.teslamotors.com/oauth/token
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: grant_type=password&client_id=<TESLA_CLIENT_ID>&client_secret=<TESLA_CLIENT_SECRET>&email=<TESLA_EMAIL>&password=<TESLA_PASS>
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept-Encoding:
         | 
| 11 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - "*/*"
         | 
| 14 | 
            +
                  User-Agent:
         | 
| 15 | 
            +
                  - Ruby
         | 
| 16 | 
            +
              response:
         | 
| 17 | 
            +
                status:
         | 
| 18 | 
            +
                  code: 200
         | 
| 19 | 
            +
                  message: OK
         | 
| 20 | 
            +
                headers:
         | 
| 21 | 
            +
                  Server:
         | 
| 22 | 
            +
                  - nginx
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Wed, 17 Dec 2014 00:23:51 GMT
         | 
| 25 | 
            +
                  Content-Type:
         | 
| 26 | 
            +
                  - application/json; charset=utf-8
         | 
| 27 | 
            +
                  Transfer-Encoding:
         | 
| 28 | 
            +
                  - chunked
         | 
| 29 | 
            +
                  Connection:
         | 
| 30 | 
            +
                  - keep-alive
         | 
| 31 | 
            +
                  Status:
         | 
| 32 | 
            +
                  - 200 OK
         | 
| 33 | 
            +
                  Cache-Control:
         | 
| 34 | 
            +
                  - no-store
         | 
| 35 | 
            +
                  Pragma:
         | 
| 36 | 
            +
                  - no-cache
         | 
| 37 | 
            +
                  X-Ua-Compatible:
         | 
| 38 | 
            +
                  - IE=Edge,chrome=1
         | 
| 39 | 
            +
                  X-Request-Id:
         | 
| 40 | 
            +
                  - 3ce296d469bca7d009847baad3d6d204
         | 
| 41 | 
            +
                  X-Runtime:
         | 
| 42 | 
            +
                  - '0.467357'
         | 
| 43 | 
            +
                body:
         | 
| 44 | 
            +
                  encoding: UTF-8
         | 
| 45 | 
            +
                  string: '{"access_token":"acea233197c90225b4478877a90f5c3395ea79438efb6807b675956a2c3cb56d","token_type":"bearer","expires_in":7776000}'
         | 
| 46 | 
            +
                http_version: 
         | 
| 47 | 
            +
              recorded_at: Wed, 17 Dec 2014 00:23:53 GMT
         | 
| 48 | 
            +
            - request:
         | 
| 49 | 
            +
                method: get
         | 
| 50 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles
         | 
| 51 | 
            +
                body:
         | 
| 52 | 
            +
                  encoding: US-ASCII
         | 
| 53 | 
            +
                  string: ''
         | 
| 54 | 
            +
                headers:
         | 
| 55 | 
            +
                  Authorization:
         | 
| 56 | 
            +
                  - Bearer acea233197c90225b4478877a90f5c3395ea79438efb6807b675956a2c3cb56d
         | 
| 57 | 
            +
              response:
         | 
| 58 | 
            +
                status:
         | 
| 59 | 
            +
                  code: 200
         | 
| 60 | 
            +
                  message: OK
         | 
| 61 | 
            +
                headers:
         | 
| 62 | 
            +
                  Server:
         | 
| 63 | 
            +
                  - nginx
         | 
| 64 | 
            +
                  Date:
         | 
| 65 | 
            +
                  - Wed, 17 Dec 2014 00:23:52 GMT
         | 
| 66 | 
            +
                  Content-Type:
         | 
| 67 | 
            +
                  - application/json; charset=utf-8
         | 
| 68 | 
            +
                  Content-Length:
         | 
| 69 | 
            +
                  - '446'
         | 
| 70 | 
            +
                  Connection:
         | 
| 71 | 
            +
                  - keep-alive
         | 
| 72 | 
            +
                  Status:
         | 
| 73 | 
            +
                  - 200 OK
         | 
| 74 | 
            +
                  X-Ua-Compatible:
         | 
| 75 | 
            +
                  - IE=Edge,chrome=1
         | 
| 76 | 
            +
                  Etag:
         | 
| 77 | 
            +
                  - '"c5d083718f906b7336fb8b28fcc87b6c"'
         | 
| 78 | 
            +
                  Cache-Control:
         | 
| 79 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 80 | 
            +
                  X-Request-Id:
         | 
| 81 | 
            +
                  - eabc8e2ca16f577538a3e050fa2310e1
         | 
| 82 | 
            +
                  X-Runtime:
         | 
| 83 | 
            +
                  - '0.548130'
         | 
| 84 | 
            +
                body:
         | 
| 85 | 
            +
                  encoding: UTF-8
         | 
| 86 | 
            +
                  string: '{"response":[{"color":null,"display_name":"Nikola","id":1514029006966957156,"option_codes":"MS01,RENA,TM00,DRLH,PF00,BT85,PBCW,RFPO,WT19,IBMB,IDPB,TR00,SU01,SC01,TP01,AU01,CH00,HP00,PA00,PS00,AD02,X020,X025,X001,X003,X007,X011,X013,COUS","vehicle_id":490215852,"vin":"5YJSA1CN5CFP01657","tokens":["6b6e59059375f282","09b1673648be8c08"],"state":"online","remote_start_enabled":true,"calendar_enabled":true,"notifications_enabled":true}],"count":1}'
         | 
| 87 | 
            +
                http_version: 
         | 
| 88 | 
            +
              recorded_at: Wed, 17 Dec 2014 00:23:54 GMT
         | 
| 89 | 
            +
            - request:
         | 
| 90 | 
            +
                method: get
         | 
| 91 | 
            +
                uri: https://owner-api.teslamotors.com/api/1/vehicles/1514029006966957156/data_request/climate_state
         | 
| 92 | 
            +
                body:
         | 
| 93 | 
            +
                  encoding: US-ASCII
         | 
| 94 | 
            +
                  string: ''
         | 
| 95 | 
            +
                headers:
         | 
| 96 | 
            +
                  Authorization:
         | 
| 97 | 
            +
                  - Bearer acea233197c90225b4478877a90f5c3395ea79438efb6807b675956a2c3cb56d
         | 
| 98 | 
            +
              response:
         | 
| 99 | 
            +
                status:
         | 
| 100 | 
            +
                  code: 200
         | 
| 101 | 
            +
                  message: OK
         | 
| 102 | 
            +
                headers:
         | 
| 103 | 
            +
                  Server:
         | 
| 104 | 
            +
                  - nginx
         | 
| 105 | 
            +
                  Date:
         | 
| 106 | 
            +
                  - Wed, 17 Dec 2014 00:23:54 GMT
         | 
| 107 | 
            +
                  Content-Type:
         | 
| 108 | 
            +
                  - application/json; charset=utf-8
         | 
| 109 | 
            +
                  Content-Length:
         | 
| 110 | 
            +
                  - '217'
         | 
| 111 | 
            +
                  Connection:
         | 
| 112 | 
            +
                  - keep-alive
         | 
| 113 | 
            +
                  Status:
         | 
| 114 | 
            +
                  - 200 OK
         | 
| 115 | 
            +
                  X-Ua-Compatible:
         | 
| 116 | 
            +
                  - IE=Edge,chrome=1
         | 
| 117 | 
            +
                  Etag:
         | 
| 118 | 
            +
                  - '"ff12924a3bd0a8a0851217a9d49f607b"'
         | 
| 119 | 
            +
                  Cache-Control:
         | 
| 120 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 121 | 
            +
                  X-Request-Id:
         | 
| 122 | 
            +
                  - 8b4df7687420eb504b01cb19005e8222
         | 
| 123 | 
            +
                  X-Runtime:
         | 
| 124 | 
            +
                  - '0.926037'
         | 
| 125 | 
            +
                body:
         | 
| 126 | 
            +
                  encoding: UTF-8
         | 
| 127 | 
            +
                  string: '{"response":{"inside_temp":null,"outside_temp":null,"driver_temp_setting":20.9,"passenger_temp_setting":20.9,"is_auto_conditioning_on":null,"is_front_defroster_on":null,"is_rear_defroster_on":false,"fan_status":null}}'
         | 
| 128 | 
            +
                http_version: 
         | 
| 129 | 
            +
              recorded_at: Wed, 17 Dec 2014 00:23:56 GMT
         | 
| 130 | 
            +
            recorded_with: VCR 2.9.3
         |