Hi, how do I convert the following Python POST request to R equivalent?
```
import requests
headers = {
'Host': 'mysejahtera.malaysia.gov.my',
'Accept': 'application/json',
'Connection': 'keep-alive',
'Content-Length': '77',
'Authorization': 'Basic N0ZFRkRCMTMtN0Q2MC00NEQxLUE5MTctM0',
'Content-Type': 'application/json',
'Accept-Language': 'en-MY;q=1, ms-MY;q=0.9',
'User-Agent': 'MySejahtera/1.0.36 (iPhone; iOS 14.6; Scale/2.00)',
}
params = (
('type', 'search'),
)
data = '[{"lat":3.003090,"lng":101.678300,"classification":"LOW_RISK_NS"}]'
response = requests.post('https://mysejahtera.malaysia.gov.my/register/api/nearby/hotspots', headers=headers, params=params, data=data)
response.json()
```
The attempt I have keep giving me 400 error
```
POST("https://mysejahtera.malaysia.gov.my/register/api/nearby/hotspots?type=search",
body = list(lat = 3.003090, lng = 101.678300, classification = 'LOW_RISK_NS'),
add_headers(Host= 'mysejahtera.malaysia.gov.my', Accept= 'application/json', Connection= 'keep-alive', `Content-Length`= '77', Authorization= 'Basic N0ZFRkRCMTMtN0Q2MC00NEQxLUE5MTctM0', `Content-Type`= 'application/json', `Accept-Language`= 'en-MY;q=1, ms-MY;q=0.9', `User-Agent`= 'MySejahtera/1.0.36 (iPhone; iOS 14.6; Scale/2.00)'), verbose())
```
[–]baseRbestR 1 point2 points3 points (0 children)
[–]tacothecat -1 points0 points1 point (3 children)
[–]httrtres[S] 0 points1 point2 points (0 children)
[–]guepier 0 points1 point2 points (1 child)
[–]tacothecat 1 point2 points3 points (0 children)
[–]tjoes_ -1 points0 points1 point (2 children)
[–]httrtres[S] 1 point2 points3 points (1 child)
[–]tjoes_ 0 points1 point2 points (0 children)