You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1425,7 +1425,7 @@ export class FusionAuthClient {
1425
1425
* Makes a request to the Token endpoint to exchange the authorization code returned from the Authorize endpoint for an access token.
1426
1426
*
1427
1427
* @param {string} code The authorization code returned on the /oauth2/authorize response.
1428
-
* @param {string} client_id The unique client identifier. The client Id is the Id of the FusionAuth Application in which you you are attempting to authenticate.
1428
+
* @param {string} client_id The unique client identifier. The client Id is the Id of the FusionAuth Application in which you are attempting to authenticate.
1429
1429
* @param {string} client_secret (Optional) The client secret. This value will be required if client authentication is enabled.
1430
1430
* @param {string} redirect_uri The URI to redirect to upon a successful request.
1431
1431
* @returns {Promise<ClientResponse<AccessToken>>}
@@ -1450,7 +1450,7 @@ export class FusionAuthClient {
1450
1450
* Makes a request to the Token endpoint to exchange the authorization code returned from the Authorize endpoint and a code_verifier for an access token.
1451
1451
*
1452
1452
* @param {string} code The authorization code returned on the /oauth2/authorize response.
1453
-
* @param {string} client_id (Optional) The unique client identifier. The client Id is the Id of the FusionAuth Application in which you you are attempting to authenticate. This parameter is optional when the Authorization header is provided.
1453
+
* @param {string} client_id (Optional) The unique client identifier. The client Id is the Id of the FusionAuth Application in which you are attempting to authenticate. This parameter is optional when the Authorization header is provided.
1454
1454
* @param {string} client_secret (Optional) The client secret. This value may optionally be provided in the request body instead of the Authorization header.
1455
1455
* @param {string} redirect_uri The URI to redirect to upon a successful request.
1456
1456
* @param {string} code_verifier The random string generated previously. Will be compared with the code_challenge sent previously, which allows the OAuth provider to authenticate your app.
@@ -1477,7 +1477,7 @@ export class FusionAuthClient {
1477
1477
* If you will be using the Refresh Token Grant, you will make a request to the Token endpoint to exchange the user’s refresh token for an access token.
1478
1478
*
1479
1479
* @param {string} refresh_token The refresh token that you would like to use to exchange for an access token.
1480
-
* @param {string} client_id (Optional) The unique client identifier. The client Id is the Id of the FusionAuth Application in which you you are attempting to authenticate. This parameter is optional when the Authorization header is provided.
1480
+
* @param {string} client_id (Optional) The unique client identifier. The client Id is the Id of the FusionAuth Application in which you are attempting to authenticate. This parameter is optional when the Authorization header is provided.
1481
1481
* @param {string} client_secret (Optional) The client secret. This value may optionally be provided in the request body instead of the Authorization header.
1482
1482
* @param {string} scope (Optional) This parameter is optional and if omitted, the same scope requested during the authorization request will be used. If provided the scopes must match those requested during the initial authorization request.
1483
1483
* @param {string} user_code (Optional) The end-user verification code. This code is required if using this endpoint to approve the Device Authorization.
@@ -1519,7 +1519,7 @@ export class FusionAuthClient {
1519
1519
*
1520
1520
* @param {string} username The login identifier of the user. The login identifier can be either the email or the username.
1521
1521
* @param {string} password The user’s password.
1522
-
* @param {string} client_id (Optional) The unique client identifier. The client Id is the Id of the FusionAuth Application in which you you are attempting to authenticate. This parameter is optional when the Authorization header is provided.
1522
+
* @param {string} client_id (Optional) The unique client identifier. The client Id is the Id of the FusionAuth Application in which you are attempting to authenticate. This parameter is optional when the Authorization header is provided.
1523
1523
* @param {string} client_secret (Optional) The client secret. This value may optionally be provided in the request body instead of the Authorization header.
1524
1524
* @param {string} scope (Optional) This parameter is optional and if omitted, the same scope requested during the authorization request will be used. If provided the scopes must match those requested during the initial authorization request.
1525
1525
* @param {string} user_code (Optional) The end-user verification code. This code is required if using this endpoint to approve the Device Authorization.
0 commit comments