Skip to content

Commit fa0d8cb

Browse files
authored
Update README.md
Fixed spacing in README
1 parent 4592fc0 commit fa0d8cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ This fastify plugin adds 2 utility decorators to your fastify instance:
5959
- `access_token`
6060
- `refresh_token` (optional, only if the `offline scope` was originally requested)
6161
- `token_type` (generally `'bearer'`)
62-
- `expires_in` (number of seconds for the token to expire, e.g. `240000`)
62+
- `expires_in` (number of seconds for the token to expire, e.g. `240000`)
6363
- `getNewAccessTokenUsingRefreshToken(refreshToken, params, callback)`: A function that takes a refresh token and retrieves a new *token response* object. This is generally useful with background processing workers to re-issue a new token when the original token has expired. The `params` argument is optional and it's an object that can be used to pass in extra parameters to the refresh request (e.g. a stricter set of scopes). If the callback is not passed this function will return a promise. The object resulting from the callback call or the promise resolution is a new *token response* object (see fields above).
6464

6565
## License

0 commit comments

Comments
 (0)