Longer then long variables
Created by: delcomp
{"id":640794306199020323}
Following does not work because long is 32-bit. long test = root["id"] ;
Actually I need 'id' as a string. So I tried the following: const char* test = root["id"].asString(); But that returns an empty string.
Any ideas?