Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
750 views
in Technique[技术] by (71.8m points)

symfony4 - How to call the URL with token using restClient in Shopware?

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...