I use FetchAPI of Fable.PowerPack to make basic authentication application, but I am in trouble because I can not base64 encode.
For example, I wrote such a code,
let base64enc str =
str
|> Seq.map byte
|> Array.ofSeq
|> System.Convert.ToBase64String
However, the following error occurs.
Error FABLE: Can not find replacement for System.Convert.ToBase64String
Is there any way?