To make requests to a vehicle, your end user must connect their vehicle using Smartcar Connect. Smartcar Connect uses the OAuth 2.0 protocol to provide a secure and elegant authorization flow for your users.

1. Initialize the Smartcar object

Instantiate a Smartcar object in the constructor of the App component.

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
# ./index.rb

# TODO: Authorization Step 1a: Initialize the Smartcar object
@@client = Smartcar::AuthClient.new({
    mode: 'test',
})

2. Launch Connect

A Server-Side Rendered application will redirect to Smartcar Connect to request access to a user’s vehicle. On Connect, the user logs in with the username and password for their vehicle’s connected services account and grants the application access to their vehicle.

To launch Connect, we need to redirect the user to the appropriate url. We can make use of the authorization_url function in our Smartcar object and redirect the user to the url to launch the connect flow.

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
# ./app.rb

get "/login" do
  # TODO: Authorization Step 1b: Launch the authorization flow
  redirect @@client.get_auth_url(['required:read_vehicle_info'])
end

3. Receive the authorization code

Once a user has authorized the application to access their vehicle, the user is redirected to the redirect_uri with an authorization code as a query parameter.

The authorization code represents a user consenting your application access to their vehicle. It does not grant access to the vehicle itself.

In the previous section, we had set our redirect_uri as localhost:8000/exchange. Now, our server can be set up as follows to receive the authorization code.

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
# ./app.rb

get "/exchange" do
  # TODO: Authorization Step 3: Handle Smartcar response
  code = params[:code]

  puts code

  "OK"
end

Try it out

Let’s try authenticating a vehicle in test mode.

In test mode, any username or password is valid for each brand.

Restart your server, open up your browser and go to http://localhost:8000/login. Notice once you log in, Smartcar showcases all the permissions your application is asking for, in this case, read_vehicle_info. A user has to consent to all the permissions.

Once you have logged in and accepted the permissions, you should see your authorization code printed to your console.


In the next section, we will cover how to exchange the authorization code for an access_token and make your first request to Smartcar API with it!