diff options
-rw-r--r-- | CONTRIBUTORS.md | 1 | ||||
-rw-r--r-- | docs/API.md | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4b403e19e..aa15e7c39 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -123,3 +123,4 @@ From oldest to newest contributor, we would like to thank: - [Mike Urbach](https://github.com/mikeurbach) - [J. Ryan Stinnett](https://github.com/jryans) - [Fábio S. V. Medeiros](https://github.com/fabiosvm) +- [Jackson Machado](https://github.com/jacksjm)
\ No newline at end of file diff --git a/docs/API.md b/docs/API.md index df227fd39..9fbe2b170 100644 --- a/docs/API.md +++ b/docs/API.md @@ -306,6 +306,8 @@ This call is to open the website with a given state (without having to store the Instead of sending the ClientState JSON in the post body, it will have to be encoded with base64 and attached directly onto the URL. +To avoid problems in reading base64 by the API, some characters must be kept in unicode. Therefore, before calling the API, it is necessary to replace these characters with their respective unicodes. A suggestion is to use the Regex expression `/[\u007F-\uFFFF]/g` that allows mapping these characters. + # Implementations Here are some examples of projects using the Compiler Explorer API: |