I am trying to call an external url. My URL looks something like this.
curl -X GET "https://api.manu.th/v1/list" -H "accept: application/json" -H "Token: token_number"
Now I am not able to implement it using Shopware 6. So far I have tried following lines of code.
$this->restClient = new Client();
$request = new Request(
'GET',
"https://api.manu.th/v1/list",
[
'Token' => 'token_number'
],
['Content-Type' => 'application/json']
);
$response = $this->restClient->send($request);
$body = json_decode($response->getBody()->getContents(), true);
This is returning me is not callable: Invalid resource type: array", "meta": {
Can anybody please help me?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…