You need to sign in to do that
Don't have an account?

void valueOf(List<String>) from the type Blob at line 102 column 67
Hello All,
While I am encoding string it works file but while I am encidung list of string it throwing above error. Any suggestions? thanks
While I am encoding string it works file but while I am encidung list of string it throwing above error. Any suggestions? thanks
String bodyEncoded = EncodingUtil.base64Encode(Blob.valueOf(StrBody)); (this is working fine) List<string> bodyEncoded = EncodingUtil.base64Encode(Blob.valueOf(lstStrBody)); (This is throwing error)
I resolved using this code.