tesla-api

? A Ruby gem and unofficial documentation of the Tesla JSON API for the Model S, Model X, and Model 3.

  • 所有者: timdorr/tesla-api
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Referrals are back! Need a Tesla to test with? Get one with 1,000 miles of free supercharging

Do you work at Tesla? Get in contact! I'd love to help with making this API official.

Tesla JSON API

View Documentation

This is unofficial documentation of the Tesla JSON API used by the iOS and Android apps.
The API provides functionality to monitor and control the Model S (and future Tesla vehicles) remotely.
The project provides both a documentation of the API and a Ruby library for accessing it.

If any folks at Tesla are reading this, I'd love to help coordinate a developer program for your APIs. If there's any way I can be helpful, please feel free to get in contact. Also, I'd love to be in the beta firmware program :wink:

Ruby Gem Gem Version Build Status

This gem provides a basic wrapper around the API to easily query and command the car remotely.
It also provides access to the streaming API and a means to process data coming from it.

Installation

Add this line to your application's Gemfile:

gem 'tesla_api'

Or install it yourself:

gem install tesla_api

Usage

Here's a quick example:

require 'tesla_api'

tesla_api = TeslaApi::Client.new(email: email, client_id: client_id, client_secret: client_secret)
tesla_api.login!(password)
# Or if you have an access token:
tesla_api = TeslaApi::Client.new(access_token: access_token) 

model_s = tesla_api.vehicles.first # => <TeslaApi::Vehicle>

model_s.wake_up
model_s.auto_conditioning_start unless model_s.climate_state["is_auto_conditioning_on"]

model_s.set_charge_limit(90)
model_s.charge_start

charge_state = model_s.charge_state
puts "Your Model S is #{charge_state["charging_state"]} " +
     "with a SOC of #{charge_state["battery_level"]}% " + 
     "and an estimate range of #{charge_state["est_battery_range"]} miles"

Ruby portions are Copyright (c) 2014-Present Tim Dorr. Released under the terms of the
MIT license. See LICENSE for details.

主要指标

概览
名称与所有者timdorr/tesla-api
主编程语言Ruby
编程语言Ruby (语言数: 2)
平台
许可证MIT License
所有者活动
创建于2013-02-03 00:00:55
推送于2024-12-06 08:09:00
最后一次提交2024-12-06 10:09:00
发布数19
最新版本名称v3.1.0 (发布于 )
第一版名称v0.1.0 (发布于 2014-12-14 23:16:03)
用户参与
星数2k
关注者数130
派生数536
提交数644
已启用问题?
问题数263
打开的问题数19
拉请求数209
打开的拉请求数3
关闭的拉请求数37
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?