Skip to content

Commit

Permalink
chore: Fix typo in readme (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdr99 authored Nov 27, 2023
1 parent 3fa3ad3 commit 929bd47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ client = smartcar.AuthClient()
scopes = ['read_vehicle_info', 'read_odometer', <scope3>...]

# Generate auth url for User OAuth flow
auth_url = client.get_auth_url(scope)
auth_url = client.get_auth_url(scopes)
```

- The user will login, and then accept or deny the permissions in your `scope`
- The user will login, and then accept or deny the permissions in your `scopes`

- If the user is already connected to your application, they will not be shown the accept or deny dialog. However
the application can force this dialog to be shown with `client.get_auth_url(options={"force_prompt"=True})`
Expand Down

0 comments on commit 929bd47

Please sign in to comment.