Skip to content

Commit f3cbcb0

Browse files
authored
Fixed capitalization
Capitalized uses of "URL" and "URI" as well as capitalizing "Auth0"
1 parent 620bb00 commit f3cbcb0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ AuthAPI auth = new AuthAPI("{YOUR_DOMAIN}", "{YOUR_CLIENT_ID}", "{YOUR_CLIENT_SE
4444

4545
### Authorize - /authorize
4646

47-
Creates an `AuthorizeUrlBuilder` to authenticate the user with an OAuth provider. The `redirectUri` must be white-listed in the "Allowed Callback URLs" section of the Applications Settings. Parameters can be added to the final url by using the builder methods. When ready, call `build()` and obtain the Url.
47+
Creates an `AuthorizeUrlBuilder` to authenticate the user with an OAuth provider. The `redirectUri` must be white-listed in the "Allowed Callback URLs" section of the Applications Settings. Parameters can be added to the final URL by using the builder methods. When ready, call `build()` and obtain the URL.
4848

4949
```AuthorizeUrlBuilder authorizeUrl(String redirectUri)```
5050

@@ -59,7 +59,7 @@ String url = auth.authorizeUrl("https://me.auth0.com/callback")
5959
```
6060

6161
### Logout - /v2/logout
62-
Creates a `LogoutUrlBuilder` to log out the user. The `returnToUrl` must be white-listed in the "Allowed Logout URLs" section of the Dashboard, depending on the value of `setClientId` this configuration should be set in the Application or in the Tenant Settings. Parameters can be added to the final url by using the builder methods. When ready, call `build()` and obtain the Url.
62+
Creates a `LogoutUrlBuilder` to log out the user. The `returnToUrl` must be white-listed in the "Allowed Logout URLs" section of the Dashboard, depending on the value of `setClientId` this configuration should be set in the Application or in the Tenant Settings. Parameters can be added to the final URL by using the builder methods. When ready, call `build()` and obtain the URL.
6363

6464
`LogoutUrlBuilder logoutUrl(String returnToUrl, boolean setClientId)`
6565

@@ -131,7 +131,7 @@ try {
131131

132132
### Exchange the Authorization Code - /oauth/token
133133

134-
Creates a request to exchange the `code` previously obtained by calling the /authorize endpoint. The redirect uri must be the one sent in the /authorize call.
134+
Creates a request to exchange the `code` previously obtained by calling the /authorize endpoint. The redirect URI must be the one sent in the /authorize call.
135135

136136
`AuthRequest exchangeCode(String code, String redirectUri)`
137137

@@ -556,7 +556,7 @@ Example exception data
556556

557557
## Documentation
558558

559-
For more information about [auth0](http://auth0.com) check our [documentation page](http://docs.auth0.com/).
559+
For more information about [Auth0](http://auth0.com) check our [documentation page](http://docs.auth0.com/).
560560

561561
## What is Auth0?
562562

0 commit comments

Comments
 (0)