I am using RESTClient for firefox addon to test REST API, i set some headers that's working fine if i set request body and method to GET , i couldn't access data via my PHP application, but headers available
**Request headers**   
   Content-Type : application/json
**Request Body**  
   [
   {
    "data1" : "value1",
    "data2" : "value2",
    "data3" : 1
    }
   ]
How do i set Request body correctly?
 
     
     
    