I am offering a bounty of $30 to the first extension developer that makes a SmartCar Extension.
Smartcar is the “The Connected Car API for Developers. It enables apps to easily and securely communicate with vehicles.”
Their platform makes it easy to read vehicle data and send commands to vehicles of any brand using HTTP requests.
It is:
Cross-brand compatible
Communicate with vehicles across brands in a single development effort.
No hardware
Say goodbye to dongles and aftermarket hardware. Smartcar works with hardware that is already built into vehicles.
Fully documented
Get off the ground in minutes with our suite of SDKs and comprehensive docs.
It is currently compatible with 6 brands, including GMs lineup, Audi, Volkswagen, Ford, Hyundai, and more.
Here is some sample JAVA code from their website:
_import com.smartcar.sdk.*;_
// Fetch the set of vehicles associated with this access
SmartcarResponse response = AuthClient.getVehicleIds(“ACCESS_TOKEN”);
String[] vehicleIds = response.getData().getVehicleIds();
// Use the first vehicle
Vehicle vehicle = new Vehicle(vehicleIds[0], “ACCESS_TOKEN”);
// Unlock the vehicle
vehicle.unlock();
// Fetch the vehicle’s odometer
SmartcarResponse odometer = vehicle.odometer();
System.out.println(odometer.getData().getDistance());
// Fetch the vehicle’s location
SmartcarResponse location = vehicle.location();
System.out.println(location.getData().getLatitude() + ", " + location.getData().getLongitude());
Here is a link to the docs:
https://smartcar.com/docs#introduction
Here is a link to their SDKs:
https://smartcar.com/docs#sdks
I want to see login using Authorization Flow because it makes the login compatible with all added car brands. Ex: If Honda is added, then it will seamlessly compatible with the extension already.
The bounty will be paid out by Paypal or BTC
Happy developing!