Suppose I have a JSON file with the following structure:
{
"update" : {
"<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c3a6aea2aaaf83a4aea2aaafeda0acae">[email protected]</a>":{
"1234": {"notfication": "This is testing 1","url": "http://example1.com"},
"4567": {"notfication": "This is testing 3","url": "http://facebook.com"}
},
"<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b1c5d4c2c5d8dfd6f1d6dcd0d8dd9fd2dedc">[email protected]</a>":{
"abcd": {"notfication": "This is testing 1","url": "http://example2.com"},
"efgh": {"notfication": "This is testing 3","url": "http://facebook.com"}
}
}
}
Is it feasible to request that the server return the text: "[email protected]" and "[email protected]"?
Your assistance is greatly appreciated.