Ruby
Authorization
1. Initialize the Smartcar object
Instantiate a Smartcar object in the constructor of the App component.
# ./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.
# ./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.
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
.
# ./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.
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!