docs: update client secret encoding notes (#4183)

pull/4184/head
James Elliott 2022-10-16 08:30:02 +11:00 committed by GitHub
parent ca187cf3f7
commit b27fd4b7fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View File

@ -33,6 +33,12 @@ This example makes the following assumptions:
* __Client ID:__ `bookstack`
* __Client Secret:__ `bookstack_client_secret`
*__Important Note:__ Bookstack does not properly URL encode the secret per [RFC6749 Appendix B] at the time this
article was last updated (noted at the bottom). This means you'll either have to use only alphanumeric characters for
the secret or URL encode the secret yourself.*
[RFC6749 Appendix B]: https://www.rfc-editor.org/rfc/rfc6749#appendix-B
## Configuration
### Application

View File

@ -31,8 +31,11 @@ This example makes the following assumptions:
* __Client ID:__ `cloudflare`
* __Client Secret:__ `cloudflare_client_secret`
*__Important Note:__ Cloudflare does not properly URL encode the secret. This means you'll either have to use
only alphanumeric characters for the secret or URL encode it yourself.*
*__Important Note:__ Cloudflare does not properly URL encode the secret per [RFC6749 Appendix B] at the time this
article was last updated (noted at the bottom). This means you'll either have to use only alphanumeric characters for
the secret or URL encode the secret yourself.*
[RFC6749 Appendix B]: https://www.rfc-editor.org/rfc/rfc6749#appendix-B
## Configuration