I tried using ptree to fetch value of key in c++ for key name having multiple . in keys.
so I have json,
"product": {
"product.description.text": "Some text here"
}
I tried calling
std::string product = pt.get_value("product.product.description.text");
but can't get value. please help me