Hi Animesh,
if you are getting 403 - Forbidden error try modifying your xsaccess file like this:
{
"exposed" : true,
"cache_control" : "must-revalidate",
"cors":
{
"enabled":true,
"allowMethods": ["GET","POST","DELETE","PUT"],
"allowOrigin": ["*"],
"maxAge":"3600"
},
"enable_etags" : false,
"force_ssl" : false,
"prevent_xsrf" : false
}
especially the cors part solved the issue for me.
Best regards,
Yannick